-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmif_array_with_ptr_array.sv
78 lines (64 loc) · 2.17 KB
/
mif_array_with_ptr_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
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
//==============================================================================
//
// The code is generated by Intel Compiler for SystemC, version 1.5.13
// see more information at https://github.com/intel/systemc-compiler
//
//==============================================================================
//==============================================================================
//
// Module: Top ()
//
module Top // "top"
(
input logic clk
);
// Variables generated for SystemC signals
logic signed [31:0] minst_sig[2][2];
logic signed [31:0] minst_s[2];
logic signed [31:0] a[2][2];
logic signed [31:0] b[2][2];
logic signed [31:0] minst_in[2][2];
logic signed [31:0] minst_out[2][2];
logic signed [31:0] minst_outt[2][2];
// Assignments generated for C++ channel arrays
assign minst_in = a;
assign a = minst_out;
assign b = minst_outt;
//------------------------------------------------------------------------------
// Method process: minst_methProc (test_mif_array_with_ptr_array.cpp:43:5)
// Process-local variables
logic [3:0] minst_var[2][2];
always_comb
begin : minst_methProc // test_mif_array_with_ptr_array.cpp:43:5
integer j;
j = minst_s[0];
minst_var[0][j + 1] = minst_in[0][j];
minst_out[0][j] = minst_sig[0][j + 1] + minst_var[0][j];
end
//------------------------------------------------------------------------------
// Method process: minst_methProc0 (test_mif_array_with_ptr_array.cpp:43:5)
always_comb
begin : minst_methProc0 // test_mif_array_with_ptr_array.cpp:43:5
integer j;
j = minst_s[1];
minst_var[1][j + 1] = minst_in[1][j];
minst_out[1][j] = minst_sig[1][j + 1] + minst_var[1][j];
end
//------------------------------------------------------------------------------
// Method process: top_method (test_mif_array_with_ptr_array.cpp:77:5)
// Process-local variables
logic [3:0] minst_vart[2][2];
always_comb
begin : top_method // test_mif_array_with_ptr_array.cpp:77:5
integer j;
integer i;
j = a[1][1];
i = b[1][1];
minst_vart[i][j + 1] = minst_in[i][j];
minst_outt[i][j] = minst_sig[i][j + 1];
for (integer k = 0; k < 2; k++)
begin
minst_sig[0][k] = k;
end
end
endmodule