-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmif_array_with_ptr3.sv
64 lines (52 loc) · 1.76 KB
/
mif_array_with_ptr3.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
//==============================================================================
//
// The code is generated by Intel Compiler for SystemC, version 1.5.12
// 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] t;
logic signed [31:0] z;
logic signed [31:0] pt;
logic signed [31:0] pz;
logic signed [31:0] minst_in[2];
logic signed [31:0] minst_out[2];
logic signed [31:0] minst_pin[2];
logic signed [31:0] minst_pout[2];
// Assignments generated for C++ channel arrays
assign minst_in[0] = t;
assign minst_in[1] = z;
assign z = minst_out[1];
assign minst_pin[0] = pt;
assign minst_pin[1] = pz;
assign pt = minst_pout[0];
//------------------------------------------------------------------------------
// Method process: minst_ptrProc (test_mif_array_with_ptr3.cpp:32:5)
always_comb
begin : minst_ptrProc // test_mif_array_with_ptr3.cpp:32:5
minst_out[0] = minst_in[0];
minst_pout[0] = minst_pin[0];
end
//------------------------------------------------------------------------------
// Method process: minst_ptrProc0 (test_mif_array_with_ptr3.cpp:32:5)
always_comb
begin : minst_ptrProc0 // test_mif_array_with_ptr3.cpp:32:5
minst_out[1] = minst_in[1];
minst_pout[1] = minst_pin[1];
end
//------------------------------------------------------------------------------
// Method process: top_meth (test_mif_array_with_ptr3.cpp:67:5)
always_comb
begin : top_meth // test_mif_array_with_ptr3.cpp:67:5
integer i;
i = z + pt;
end
endmodule