-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmethod_switch_enum.sv
83 lines (66 loc) · 1.55 KB
/
method_switch_enum.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
//==============================================================================
//
// 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_switch_enum.cpp:77:5)
//
module A // "b_mod.a_mod"
(
);
// Variables generated for SystemC signals
logic [31:0] s;
//------------------------------------------------------------------------------
// Method process: switch_enum1 (test_switch_enum.cpp:28:5)
always_comb
begin : switch_enum1 // test_switch_enum.cpp:28:5
integer a;
integer b;
a = s;
case (a)
2 : begin
b = 1;
end
4 : begin
b = 2;
end
endcase
b = 0;
end
//------------------------------------------------------------------------------
// Method process: switch_enum2 (test_switch_enum.cpp:47:5)
always_comb
begin : switch_enum2 // test_switch_enum.cpp:47:5
logic [1:0] a;
integer b;
a = 2'(s);
case (a)
0 : begin
b = 1;
end
1 : begin
b = 2;
end
2 : begin
b = 3;
end
endcase
b = 0;
end
endmodule