-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmethod_sc_int_const_array.sv
41 lines (33 loc) · 1.17 KB
/
method_sc_int_const_array.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
//==============================================================================
//
// The code is generated by Intel Compiler for SystemC, version 1.6.0
// see more information at https://github.com/intel/systemc-compiler
//
//==============================================================================
//==============================================================================
//
// Module: top ()
//
module top // "t0"
(
);
// Variables generated for SystemC signals
logic s;
logic signed [4:0] out0;
logic signed [4:0] out2;
// Local parameters generated for C++ constants
localparam logic [31:0] const_array_i[4] = '{ 2, 3, 4, 5 };
localparam logic [31:0] const_array_j[2][2] = '{ '{ 2, 3 }, '{ 4, 5 } };
localparam logic signed [4:0] const_array[4] = '{ 1, 2, 3, 4 };
//------------------------------------------------------------------------------
// Method process: test_method (test_sc_int_const_array.cpp:37:5)
always_comb
begin : test_method // test_sc_int_const_array.cpp:37:5
out0 = const_array[1];
out0 = const_array[s];
out2 = const_array_i[2];
out2 = const_array_i[s];
out2 = const_array_j[1][0];
out2 = const_array_j[s][1];
end
endmodule