-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmethod_stdouts_prints.sv
98 lines (69 loc) · 2.5 KB
/
method_stdouts_prints.sv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
//==============================================================================
//
// The code is generated by Intel Compiler for SystemC, version 1.5.12
// see more information at https://github.com/intel/systemc-compiler
//
//==============================================================================
//==============================================================================
//
// Module: B_top ()
//
module B_top // "b_mod"
(
);
//------------------------------------------------------------------------------
// Child module instances
A a_mod
(
);
endmodule
//==============================================================================
//
// Module: A (test_stdouts_prints.cpp:117:5)
//
module A // "b_mod.a_mod"
(
);
// Variables generated for SystemC signals
logic dummy;
//------------------------------------------------------------------------------
// Method process: meth_print (test_stdouts_prints.cpp:48:5)
always_comb
begin : meth_print // test_stdouts_prints.cpp:48:5
end
//------------------------------------------------------------------------------
// Method process: meth_printf (test_stdouts_prints.cpp:55:5)
always_comb
begin : meth_printf // test_stdouts_prints.cpp:55:5
end
//------------------------------------------------------------------------------
// Method process: meth_cerr (test_stdouts_prints.cpp:63:5)
always_comb
begin : meth_cerr // test_stdouts_prints.cpp:63:5
end
//------------------------------------------------------------------------------
// Method process: meth_cout (test_stdouts_prints.cpp:77:5)
always_comb
begin : meth_cout // test_stdouts_prints.cpp:77:5
end
//------------------------------------------------------------------------------
// Method process: meth_cin (test_stdouts_prints.cpp:93:5)
always_comb
begin : meth_cin // test_stdouts_prints.cpp:93:5
end
//------------------------------------------------------------------------------
// Method process: meth_sc_print (test_stdouts_prints.cpp:98:5)
always_comb
begin : meth_sc_print // test_stdouts_prints.cpp:98:5
end
//------------------------------------------------------------------------------
// Method process: meth_sc_dump (test_stdouts_prints.cpp:103:5)
always_comb
begin : meth_sc_dump // test_stdouts_prints.cpp:103:5
end
//------------------------------------------------------------------------------
// Method process: meth_sc_kind (test_stdouts_prints.cpp:108:5)
always_comb
begin : meth_sc_kind // test_stdouts_prints.cpp:108:5
end
endmodule