-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmethod_latch.sv
95 lines (75 loc) · 1.85 KB
/
method_latch.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
//==============================================================================
//
// 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"
(
);
// Variables generated for SystemC signals
logic a;
logic b;
//------------------------------------------------------------------------------
// Child module instances
A a_mod
(
.a(a),
.b(b)
);
endmodule
//==============================================================================
//
// Module: A (test_latch.cpp:75:5)
//
module A // "b_mod.a_mod"
(
input logic a,
output logic b
);
//------------------------------------------------------------------------------
// Method process: latch1 (test_latch.cpp:34:5)
always_comb
begin : latch1 // test_latch.cpp:34:5
if (a)
begin
if (1)
begin
b = 1;
end
end else begin
b = 0;
end
end
//------------------------------------------------------------------------------
// Method process: latch2 (test_latch.cpp:46:5)
always_latch
begin : latch2 // test_latch.cpp:46:5
if (a)
begin
b = 1;
end
end
//------------------------------------------------------------------------------
// Method process: no_latch1 (test_latch.cpp:55:5)
always_comb
begin : no_latch1 // test_latch.cpp:55:5
if (1)
begin
b = 1;
end
end
//------------------------------------------------------------------------------
// Method process: no_latch2 (test_latch.cpp:62:5)
always_comb
begin : no_latch2 // test_latch.cpp:62:5
if (1)
begin
b = 1;
end
end
endmodule