1 |
140 |
rfajardo |
`include "minsoc_bench_defines.v"
|
2 |
|
|
`include "minsoc_defines.v"
|
3 |
|
|
`include "or1200_defines.v"
|
4 |
|
|
|
5 |
|
|
`include "timescale.v"
|
6 |
|
|
`include "verilator_defines.v"
|
7 |
|
|
|
8 |
|
|
module minsoc_bench_core(
|
9 |
|
|
clock,
|
10 |
|
|
reset,
|
11 |
|
|
eth_tx_clk,
|
12 |
|
|
eth_rx_clk
|
13 |
|
|
);
|
14 |
|
|
|
15 |
|
|
input clock, reset, eth_tx_clk, eth_rx_clk;
|
16 |
|
|
|
17 |
|
|
//Debug interface
|
18 |
|
|
wire dbg_tms_i;
|
19 |
|
|
wire dbg_tck_i;
|
20 |
|
|
wire dbg_tdi_i;
|
21 |
|
|
wire dbg_tdo_o;
|
22 |
|
|
wire jtag_vref;
|
23 |
|
|
wire jtag_gnd;
|
24 |
|
|
|
25 |
|
|
//SPI wires
|
26 |
|
|
wire spi_mosi;
|
27 |
|
|
reg spi_miso;
|
28 |
|
|
wire spi_sclk;
|
29 |
|
|
wire [1:0] spi_ss;
|
30 |
|
|
|
31 |
|
|
//ETH wires
|
32 |
|
|
reg eth_col;
|
33 |
|
|
reg eth_crs;
|
34 |
|
|
wire eth_trst;
|
35 |
|
|
wire eth_tx_en;
|
36 |
|
|
wire eth_tx_er;
|
37 |
|
|
wire [3:0] eth_txd;
|
38 |
|
|
reg eth_rx_dv;
|
39 |
|
|
reg eth_rx_er;
|
40 |
|
|
reg [3:0] eth_rxd;
|
41 |
|
|
reg eth_fds_mdint;
|
42 |
|
|
wire eth_mdc;
|
43 |
|
|
wire eth_mdio;
|
44 |
|
|
|
45 |
|
|
//
|
46 |
|
|
// TASKS registers to communicate with interfaces
|
47 |
|
|
//
|
48 |
|
|
`ifdef ETHERNET
|
49 |
|
|
reg [7:0] eth_rx_data [0:1535]; //receive buffer ETH (max packet 1536)
|
50 |
|
|
reg [7:0] eth_tx_data [0:1535]; //send buffer ETH (max packet 1536)
|
51 |
|
|
localparam ETH_HDR = 14;
|
52 |
|
|
localparam ETH_PAYLOAD_MAX_LENGTH = 1518;//only able to send up to 1536 bytes with header (14 bytes) and CRC (4 bytes)
|
53 |
|
|
`endif
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
//
|
57 |
|
|
// Testbench mechanics
|
58 |
|
|
//
|
59 |
|
|
reg [7:0] program_mem[(1<<(`MEMORY_ADR_WIDTH+2))-1:0];
|
60 |
|
|
integer initialize, ptr;
|
61 |
|
|
reg [8*64:0] file_name;
|
62 |
|
|
integer firmware_size; // Note that the .hex file size is greater than this, as each byte in the file needs 2 hex characters.
|
63 |
|
|
integer firmware_size_in_header;
|
64 |
|
|
reg load_file;
|
65 |
|
|
|
66 |
|
|
initial begin
|
67 |
|
|
`ifndef NO_CLOCK_DIVISION
|
68 |
|
|
minsoc_top_0.clk_adjust.clk_int = 1'b0;
|
69 |
|
|
minsoc_top_0.clk_adjust.clock_divisor = 32'h0000_0000;
|
70 |
|
|
`endif
|
71 |
|
|
|
72 |
|
|
eth_col = 1'b0;
|
73 |
|
|
eth_crs = 1'b0;
|
74 |
|
|
eth_fds_mdint = 1'b1;
|
75 |
|
|
eth_rx_er = 1'b0;
|
76 |
|
|
eth_rxd = 4'h0;
|
77 |
|
|
eth_rx_dv = 1'b0;
|
78 |
|
|
|
79 |
|
|
|
80 |
|
|
//dual and two port rams from FPGA memory instances have to be initialized to 0
|
81 |
|
|
init_fpga_memory();
|
82 |
|
|
|
83 |
|
|
load_file = 1'b0;
|
84 |
|
|
`ifdef INITIALIZE_MEMORY_MODEL
|
85 |
|
|
load_file = 1'b1;
|
86 |
|
|
`endif
|
87 |
|
|
`ifdef START_UP
|
88 |
|
|
load_file = 1'b1;
|
89 |
|
|
`endif
|
90 |
|
|
|
91 |
|
|
//get firmware hex file from command line input
|
92 |
|
|
if ( load_file ) begin
|
93 |
|
|
if ( ! $value$plusargs("file_name=%s", file_name) || file_name == 0 ) begin
|
94 |
|
|
$display("ERROR: Please specify the name of the firmware file to load on start-up.");
|
95 |
|
|
$finish;
|
96 |
|
|
end
|
97 |
|
|
|
98 |
|
|
// We are passing the firmware size separately as a command-line argument in order
|
99 |
|
|
// to avoid this kind of Icarus Verilog warnings:
|
100 |
|
|
// WARNING: minsoc_bench_core.v:111: $readmemh: Standard inconsistency, following 1364-2005.
|
101 |
|
|
// WARNING: minsoc_bench_core.v:111: $readmemh(../../sw/uart/uart.hex): Not enough words in the file for the requested range [0:32767].
|
102 |
|
|
// Apparently, some of the $readmemh() warnigns are even required by the standard. The trouble is,
|
103 |
|
|
// Verilog's $fread() is not widely implemented in the simulators, so from Verilog alone
|
104 |
|
|
// it's not easy to read the firmware file header without getting such warnings.
|
105 |
|
|
if ( ! $value$plusargs("firmware_size=%d", firmware_size) ) begin
|
106 |
|
|
$display("ERROR: Please specify the size of the firmware (in bytes) contained in the hex firmware file.");
|
107 |
|
|
$finish;
|
108 |
|
|
end
|
109 |
|
|
|
110 |
|
|
$readmemh(file_name, program_mem, 0, firmware_size - 1);
|
111 |
|
|
|
112 |
|
|
firmware_size_in_header = { program_mem[0] , program_mem[1] , program_mem[2] , program_mem[3] };
|
113 |
|
|
|
114 |
|
|
if ( firmware_size != firmware_size_in_header ) begin
|
115 |
|
|
$display("ERROR: The firmware size in the file header does not match the firmware size given as command-line argument. Did you forget bin2hex's -size_word flag when generating the firmware file?");
|
116 |
|
|
$finish;
|
117 |
|
|
end
|
118 |
|
|
|
119 |
|
|
end
|
120 |
|
|
|
121 |
|
|
`ifdef INITIALIZE_MEMORY_MODEL
|
122 |
|
|
// Initialize memory with firmware
|
123 |
|
|
initialize = 0;
|
124 |
|
|
while ( initialize < firmware_size ) begin
|
125 |
|
|
minsoc_top_0.onchip_ram_top.block_ram_3.mem[initialize/4] = program_mem[initialize];
|
126 |
|
|
minsoc_top_0.onchip_ram_top.block_ram_2.mem[initialize/4] = program_mem[initialize+1];
|
127 |
|
|
minsoc_top_0.onchip_ram_top.block_ram_1.mem[initialize/4] = program_mem[initialize+2];
|
128 |
|
|
minsoc_top_0.onchip_ram_top.block_ram_0.mem[initialize/4] = program_mem[initialize+3];
|
129 |
|
|
initialize = initialize + 4;
|
130 |
|
|
end
|
131 |
|
|
$display("Memory model initialized with firmware:");
|
132 |
|
|
$display("%s", file_name);
|
133 |
|
|
$display("%d Bytes loaded from %d ...", initialize , firmware_size);
|
134 |
|
|
`endif
|
135 |
|
|
|
136 |
|
|
`ifdef START_UP
|
137 |
|
|
// Pass firmware over spi to or1k_startup
|
138 |
|
|
ptr = 0;
|
139 |
|
|
//read dummy
|
140 |
|
|
send_spi(program_mem[ptr]);
|
141 |
|
|
send_spi(program_mem[ptr]);
|
142 |
|
|
send_spi(program_mem[ptr]);
|
143 |
|
|
send_spi(program_mem[ptr]);
|
144 |
|
|
//~read dummy
|
145 |
|
|
while ( ptr < firmware_size ) begin
|
146 |
|
|
send_spi(program_mem[ptr]);
|
147 |
|
|
ptr = ptr + 1;
|
148 |
|
|
end
|
149 |
|
|
$display("Memory start-up completed...");
|
150 |
|
|
$display("Loaded firmware:");
|
151 |
|
|
$display("%s", file_name);
|
152 |
|
|
`endif
|
153 |
|
|
end
|
154 |
|
|
|
155 |
|
|
|
156 |
|
|
//
|
157 |
|
|
// Modules instantiations
|
158 |
|
|
//
|
159 |
|
|
minsoc_top minsoc_top_0(
|
160 |
|
|
.clk(clock),
|
161 |
|
|
.reset(reset)
|
162 |
|
|
|
163 |
|
|
//JTAG ports
|
164 |
|
|
`ifdef GENERIC_TAP
|
165 |
|
|
, .jtag_tdi(dbg_tdi_i),
|
166 |
|
|
.jtag_tms(dbg_tms_i),
|
167 |
|
|
.jtag_tck(dbg_tck_i),
|
168 |
|
|
.jtag_tdo(dbg_tdo_o),
|
169 |
|
|
.jtag_vref(jtag_vref),
|
170 |
|
|
.jtag_gnd(jtag_gnd)
|
171 |
|
|
`endif
|
172 |
|
|
|
173 |
|
|
//SPI ports
|
174 |
|
|
`ifdef START_UP
|
175 |
|
|
, .spi_flash_mosi(spi_mosi),
|
176 |
|
|
.spi_flash_miso(spi_miso),
|
177 |
|
|
.spi_flash_sclk(spi_sclk),
|
178 |
|
|
.spi_flash_ss(spi_ss)
|
179 |
|
|
`endif
|
180 |
|
|
|
181 |
|
|
//UART ports
|
182 |
|
|
`ifdef UART
|
183 |
|
|
, .uart_stx(uart_stx),
|
184 |
|
|
.uart_srx(uart_srx)
|
185 |
|
|
`endif // !UART
|
186 |
|
|
|
187 |
|
|
// Ethernet ports
|
188 |
|
|
`ifdef ETHERNET
|
189 |
|
|
, .eth_col(eth_col),
|
190 |
|
|
.eth_crs(eth_crs),
|
191 |
|
|
.eth_trste(eth_trst),
|
192 |
|
|
.eth_tx_clk(eth_tx_clk),
|
193 |
|
|
.eth_tx_en(eth_tx_en),
|
194 |
|
|
.eth_tx_er(eth_tx_er),
|
195 |
|
|
.eth_txd(eth_txd),
|
196 |
|
|
.eth_rx_clk(eth_rx_clk),
|
197 |
|
|
.eth_rx_dv(eth_rx_dv),
|
198 |
|
|
.eth_rx_er(eth_rx_er),
|
199 |
|
|
.eth_rxd(eth_rxd),
|
200 |
|
|
.eth_fds_mdint(eth_fds_mdint),
|
201 |
|
|
.eth_mdc(eth_mdc),
|
202 |
|
|
.eth_mdio(eth_mdio)
|
203 |
|
|
`endif // !ETHERNET
|
204 |
|
|
);
|
205 |
|
|
|
206 |
|
|
`ifdef DPI_DEBUG
|
207 |
|
|
jtag_dpi jtag_dpi_0
|
208 |
|
|
(
|
209 |
|
|
.system_clk( clock ),
|
210 |
|
|
.jtag_tms_o( dbg_tms_i ),
|
211 |
|
|
.jtag_tck_o( dbg_tck_i ),
|
212 |
|
|
.jtag_trst_o(), // TODO: JTAG reset signal not used yet
|
213 |
|
|
.jtag_tdi_o( dbg_tdi_i ),
|
214 |
|
|
.jtag_tdo_i( dbg_tdo_o )
|
215 |
|
|
);
|
216 |
|
|
`else
|
217 |
|
|
assign dbg_tdi_i = 1;
|
218 |
|
|
assign dbg_tck_i = 0;
|
219 |
|
|
assign dbg_tms_i = 1;
|
220 |
|
|
`endif
|
221 |
|
|
|
222 |
|
|
|
223 |
|
|
`ifdef VCD_OUTPUT
|
224 |
|
|
initial begin
|
225 |
|
|
$dumpfile("../results/minsoc_wave.vcd");
|
226 |
|
|
$dumpvars();
|
227 |
|
|
end
|
228 |
|
|
`endif
|
229 |
|
|
|
230 |
|
|
|
231 |
|
|
//
|
232 |
|
|
// Functionalities tasks: SPI Startup and UART Monitor
|
233 |
|
|
//
|
234 |
|
|
//SPI START_UP
|
235 |
|
|
`ifdef START_UP
|
236 |
|
|
task send_spi;
|
237 |
|
|
input [7:0] data_in;
|
238 |
|
|
integer i;
|
239 |
|
|
begin
|
240 |
|
|
i = 7;
|
241 |
|
|
for ( i = 7 ; i >= 0; i = i - 1 ) begin
|
242 |
|
|
spi_miso = data_in[i];
|
243 |
|
|
@ (posedge spi_sclk);
|
244 |
|
|
end
|
245 |
|
|
end
|
246 |
|
|
endtask
|
247 |
|
|
`endif
|
248 |
|
|
//~SPI START_UP
|
249 |
|
|
|
250 |
|
|
|
251 |
|
|
//
|
252 |
|
|
// TASK to initialize instantiated FPGA dual and two port memory to 0
|
253 |
|
|
//
|
254 |
|
|
task init_fpga_memory;
|
255 |
|
|
integer i;
|
256 |
|
|
begin
|
257 |
|
|
`ifdef OR1200_RFRAM_TWOPORT
|
258 |
|
|
`ifdef OR1200_XILINX_RAMB4
|
259 |
|
|
for ( i = 0; i < (1<<8); i = i + 1 ) begin
|
260 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb4_s16_s16_0.mem[i] = 16'h0000;
|
261 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb4_s16_s16_1.mem[i] = 16'h0000;
|
262 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb4_s16_s16_0.mem[i] = 16'h0000;
|
263 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb4_s16_s16_1.mem[i] = 16'h0000;
|
264 |
|
|
end
|
265 |
|
|
`elsif OR1200_XILINX_RAMB16
|
266 |
|
|
for ( i = 0; i < (1<<9); i = i + 1 ) begin
|
267 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb16_s36_s36.mem[i] = 32'h0000_0000;
|
268 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb16_s36_s36.mem[i] = 32'h0000_0000;
|
269 |
|
|
end
|
270 |
|
|
`elsif OR1200_ALTERA_LPM
|
271 |
|
|
`ifndef OR1200_ALTERA_LPM_XXX
|
272 |
|
|
$display("Definition OR1200_ALTERA_LPM in or1200_defines.v does not enable ALTERA memory for neither DUAL nor TWO port RFRAM");
|
273 |
|
|
$display("It uses GENERIC memory instead.");
|
274 |
|
|
$display("Add '`define OR1200_ALTERA_LPM_XXX' under '`define OR1200_ALTERA_LPM' on or1200_defines.v to use ALTERA memory.");
|
275 |
|
|
`endif
|
276 |
|
|
`ifdef OR1200_ALTERA_LPM_XXX
|
277 |
|
|
$display("...Using ALTERA memory for TWOPORT RFRAM!");
|
278 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
279 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.altqpram_component.mem[i] = 32'h0000_0000;
|
280 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.altqpram_component.mem[i] = 32'h0000_0000;
|
281 |
|
|
end
|
282 |
|
|
`else
|
283 |
|
|
$display("...Using GENERIC memory!");
|
284 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
285 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.mem[i] = 32'h0000_0000;
|
286 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.mem[i] = 32'h0000_0000;
|
287 |
|
|
end
|
288 |
|
|
`endif
|
289 |
|
|
`elsif OR1200_XILINX_RAM32X1D
|
290 |
|
|
$display("Definition OR1200_XILINX_RAM32X1D in or1200_defines.v does not enable FPGA memory for TWO port RFRAM");
|
291 |
|
|
$display("It uses GENERIC memory instead.");
|
292 |
|
|
$display("FPGA memory can be used if you choose OR1200_RFRAM_DUALPORT");
|
293 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
294 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.mem[i] = 32'h0000_0000;
|
295 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.mem[i] = 32'h0000_0000;
|
296 |
|
|
end
|
297 |
|
|
`else
|
298 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
299 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.mem[i] = 32'h0000_0000;
|
300 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.mem[i] = 32'h0000_0000;
|
301 |
|
|
end
|
302 |
|
|
`endif
|
303 |
|
|
`elsif OR1200_RFRAM_DUALPORT
|
304 |
|
|
`ifdef OR1200_XILINX_RAMB4
|
305 |
|
|
for ( i = 0; i < (1<<8); i = i + 1 ) begin
|
306 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb4_s16_0.mem[i] = 16'h0000;
|
307 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb4_s16_1.mem[i] = 16'h0000;
|
308 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb4_s16_0.mem[i] = 16'h0000;
|
309 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb4_s16_1.mem[i] = 16'h0000;
|
310 |
|
|
end
|
311 |
|
|
`elsif OR1200_XILINX_RAMB16
|
312 |
|
|
for ( i = 0; i < (1<<9); i = i + 1 ) begin
|
313 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.ramb16_s36_s36.mem[i] = 32'h0000_0000;
|
314 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.ramb16_s36_s36.mem[i] = 32'h0000_0000;
|
315 |
|
|
end
|
316 |
|
|
`elsif OR1200_ALTERA_LPM
|
317 |
|
|
`ifndef OR1200_ALTERA_LPM_XXX
|
318 |
|
|
$display("Definition OR1200_ALTERA_LPM in or1200_defines.v does not enable ALTERA memory for neither DUAL nor TWO port RFRAM");
|
319 |
|
|
$display("It uses GENERIC memory instead.");
|
320 |
|
|
$display("Add '`define OR1200_ALTERA_LPM_XXX' under '`define OR1200_ALTERA_LPM' on or1200_defines.v to use ALTERA memory.");
|
321 |
|
|
`endif
|
322 |
|
|
`ifdef OR1200_ALTERA_LPM_XXX
|
323 |
|
|
$display("...Using ALTERA memory for DUALPORT RFRAM!");
|
324 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
325 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.altqpram_component.mem[i] = 32'h0000_0000;
|
326 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.altqpram_component.mem[i] = 32'h0000_0000;
|
327 |
|
|
end
|
328 |
|
|
`else
|
329 |
|
|
$display("...Using GENERIC memory!");
|
330 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
331 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.mem[i] = 32'h0000_0000;
|
332 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.mem[i] = 32'h0000_0000;
|
333 |
|
|
end
|
334 |
|
|
`endif
|
335 |
|
|
`elsif OR1200_XILINX_RAM32X1D
|
336 |
|
|
`ifdef OR1200_USE_RAM16X1D_FOR_RAM32X1D
|
337 |
|
|
for ( i = 0; i < (1<<4); i = i + 1 ) begin
|
338 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_0.mem[i] = 1'b0;
|
339 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_1.mem[i] = 1'b0;
|
340 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_2.mem[i] = 1'b0;
|
341 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_3.mem[i] = 1'b0;
|
342 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_4.mem[i] = 1'b0;
|
343 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_5.mem[i] = 1'b0;
|
344 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_6.mem[i] = 1'b0;
|
345 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0_7.mem[i] = 1'b0;
|
346 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_0.mem[i] = 1'b0;
|
347 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_1.mem[i] = 1'b0;
|
348 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_2.mem[i] = 1'b0;
|
349 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_3.mem[i] = 1'b0;
|
350 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_4.mem[i] = 1'b0;
|
351 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_5.mem[i] = 1'b0;
|
352 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_6.mem[i] = 1'b0;
|
353 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1_7.mem[i] = 1'b0;
|
354 |
|
|
|
355 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_0.mem[i] = 1'b0;
|
356 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_1.mem[i] = 1'b0;
|
357 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_2.mem[i] = 1'b0;
|
358 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_3.mem[i] = 1'b0;
|
359 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_4.mem[i] = 1'b0;
|
360 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_5.mem[i] = 1'b0;
|
361 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_6.mem[i] = 1'b0;
|
362 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0_7.mem[i] = 1'b0;
|
363 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_0.mem[i] = 1'b0;
|
364 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_1.mem[i] = 1'b0;
|
365 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_2.mem[i] = 1'b0;
|
366 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_3.mem[i] = 1'b0;
|
367 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_4.mem[i] = 1'b0;
|
368 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_5.mem[i] = 1'b0;
|
369 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_6.mem[i] = 1'b0;
|
370 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1_7.mem[i] = 1'b0;
|
371 |
|
|
|
372 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_0.mem[i] = 1'b0;
|
373 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_1.mem[i] = 1'b0;
|
374 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_2.mem[i] = 1'b0;
|
375 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_3.mem[i] = 1'b0;
|
376 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_4.mem[i] = 1'b0;
|
377 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_5.mem[i] = 1'b0;
|
378 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_6.mem[i] = 1'b0;
|
379 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0_7.mem[i] = 1'b0;
|
380 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_0.mem[i] = 1'b0;
|
381 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_1.mem[i] = 1'b0;
|
382 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_2.mem[i] = 1'b0;
|
383 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_3.mem[i] = 1'b0;
|
384 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_4.mem[i] = 1'b0;
|
385 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_5.mem[i] = 1'b0;
|
386 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_6.mem[i] = 1'b0;
|
387 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1_7.mem[i] = 1'b0;
|
388 |
|
|
|
389 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_0.mem[i] = 1'b0;
|
390 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_1.mem[i] = 1'b0;
|
391 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_2.mem[i] = 1'b0;
|
392 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_3.mem[i] = 1'b0;
|
393 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_4.mem[i] = 1'b0;
|
394 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_5.mem[i] = 1'b0;
|
395 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_6.mem[i] = 1'b0;
|
396 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0_7.mem[i] = 1'b0;
|
397 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_0.mem[i] = 1'b0;
|
398 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_1.mem[i] = 1'b0;
|
399 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_2.mem[i] = 1'b0;
|
400 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_3.mem[i] = 1'b0;
|
401 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_4.mem[i] = 1'b0;
|
402 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_5.mem[i] = 1'b0;
|
403 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_6.mem[i] = 1'b0;
|
404 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1_7.mem[i] = 1'b0;
|
405 |
|
|
|
406 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_0.mem[i] = 1'b0;
|
407 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_1.mem[i] = 1'b0;
|
408 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_2.mem[i] = 1'b0;
|
409 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_3.mem[i] = 1'b0;
|
410 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_4.mem[i] = 1'b0;
|
411 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_5.mem[i] = 1'b0;
|
412 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_6.mem[i] = 1'b0;
|
413 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0_7.mem[i] = 1'b0;
|
414 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_0.mem[i] = 1'b0;
|
415 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_1.mem[i] = 1'b0;
|
416 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_2.mem[i] = 1'b0;
|
417 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_3.mem[i] = 1'b0;
|
418 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_4.mem[i] = 1'b0;
|
419 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_5.mem[i] = 1'b0;
|
420 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_6.mem[i] = 1'b0;
|
421 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1_7.mem[i] = 1'b0;
|
422 |
|
|
|
423 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_0.mem[i] = 1'b0;
|
424 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_1.mem[i] = 1'b0;
|
425 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_2.mem[i] = 1'b0;
|
426 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_3.mem[i] = 1'b0;
|
427 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_4.mem[i] = 1'b0;
|
428 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_5.mem[i] = 1'b0;
|
429 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_6.mem[i] = 1'b0;
|
430 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0_7.mem[i] = 1'b0;
|
431 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_0.mem[i] = 1'b0;
|
432 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_1.mem[i] = 1'b0;
|
433 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_2.mem[i] = 1'b0;
|
434 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_3.mem[i] = 1'b0;
|
435 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_4.mem[i] = 1'b0;
|
436 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_5.mem[i] = 1'b0;
|
437 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_6.mem[i] = 1'b0;
|
438 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1_7.mem[i] = 1'b0;
|
439 |
|
|
|
440 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_0.mem[i] = 1'b0;
|
441 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_1.mem[i] = 1'b0;
|
442 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_2.mem[i] = 1'b0;
|
443 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_3.mem[i] = 1'b0;
|
444 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_4.mem[i] = 1'b0;
|
445 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_5.mem[i] = 1'b0;
|
446 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_6.mem[i] = 1'b0;
|
447 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0_7.mem[i] = 1'b0;
|
448 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_0.mem[i] = 1'b0;
|
449 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_1.mem[i] = 1'b0;
|
450 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_2.mem[i] = 1'b0;
|
451 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_3.mem[i] = 1'b0;
|
452 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_4.mem[i] = 1'b0;
|
453 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_5.mem[i] = 1'b0;
|
454 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_6.mem[i] = 1'b0;
|
455 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1_7.mem[i] = 1'b0;
|
456 |
|
|
|
457 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_0.mem[i] = 1'b0;
|
458 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_1.mem[i] = 1'b0;
|
459 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_2.mem[i] = 1'b0;
|
460 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_3.mem[i] = 1'b0;
|
461 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_4.mem[i] = 1'b0;
|
462 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_5.mem[i] = 1'b0;
|
463 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_6.mem[i] = 1'b0;
|
464 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0_7.mem[i] = 1'b0;
|
465 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_0.mem[i] = 1'b0;
|
466 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_1.mem[i] = 1'b0;
|
467 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_2.mem[i] = 1'b0;
|
468 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_3.mem[i] = 1'b0;
|
469 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_4.mem[i] = 1'b0;
|
470 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_5.mem[i] = 1'b0;
|
471 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_6.mem[i] = 1'b0;
|
472 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1_7.mem[i] = 1'b0;
|
473 |
|
|
end
|
474 |
|
|
`else
|
475 |
|
|
for ( i = 0; i < (1<<4); i = i + 1 ) begin
|
476 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_0.mem[i] = 1'b0;
|
477 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_1.mem[i] = 1'b0;
|
478 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_2.mem[i] = 1'b0;
|
479 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_3.mem[i] = 1'b0;
|
480 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_4.mem[i] = 1'b0;
|
481 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_5.mem[i] = 1'b0;
|
482 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_6.mem[i] = 1'b0;
|
483 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_0.ram32x1d_7.mem[i] = 1'b0;
|
484 |
|
|
|
485 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_0.mem[i] = 1'b0;
|
486 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_1.mem[i] = 1'b0;
|
487 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_2.mem[i] = 1'b0;
|
488 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_3.mem[i] = 1'b0;
|
489 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_4.mem[i] = 1'b0;
|
490 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_5.mem[i] = 1'b0;
|
491 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_6.mem[i] = 1'b0;
|
492 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_1.ram32x1d_7.mem[i] = 1'b0;
|
493 |
|
|
|
494 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_0.mem[i] = 1'b0;
|
495 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_1.mem[i] = 1'b0;
|
496 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_2.mem[i] = 1'b0;
|
497 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_3.mem[i] = 1'b0;
|
498 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_4.mem[i] = 1'b0;
|
499 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_5.mem[i] = 1'b0;
|
500 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_6.mem[i] = 1'b0;
|
501 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_2.ram32x1d_7.mem[i] = 1'b0;
|
502 |
|
|
|
503 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_0.mem[i] = 1'b0;
|
504 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_1.mem[i] = 1'b0;
|
505 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_2.mem[i] = 1'b0;
|
506 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_3.mem[i] = 1'b0;
|
507 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_4.mem[i] = 1'b0;
|
508 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_5.mem[i] = 1'b0;
|
509 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_6.mem[i] = 1'b0;
|
510 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.xcv_ram32x8d_3.ram32x1d_7.mem[i] = 1'b0;
|
511 |
|
|
|
512 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_0.mem[i] = 1'b0;
|
513 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_1.mem[i] = 1'b0;
|
514 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_2.mem[i] = 1'b0;
|
515 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_3.mem[i] = 1'b0;
|
516 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_4.mem[i] = 1'b0;
|
517 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_5.mem[i] = 1'b0;
|
518 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_6.mem[i] = 1'b0;
|
519 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_0.ram32x1d_7.mem[i] = 1'b0;
|
520 |
|
|
|
521 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_0.mem[i] = 1'b0;
|
522 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_1.mem[i] = 1'b0;
|
523 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_2.mem[i] = 1'b0;
|
524 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_3.mem[i] = 1'b0;
|
525 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_4.mem[i] = 1'b0;
|
526 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_5.mem[i] = 1'b0;
|
527 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_6.mem[i] = 1'b0;
|
528 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_1.ram32x1d_7.mem[i] = 1'b0;
|
529 |
|
|
|
530 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_0.mem[i] = 1'b0;
|
531 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_1.mem[i] = 1'b0;
|
532 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_2.mem[i] = 1'b0;
|
533 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_3.mem[i] = 1'b0;
|
534 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_4.mem[i] = 1'b0;
|
535 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_5.mem[i] = 1'b0;
|
536 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_6.mem[i] = 1'b0;
|
537 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_2.ram32x1d_7.mem[i] = 1'b0;
|
538 |
|
|
|
539 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_0.mem[i] = 1'b0;
|
540 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_1.mem[i] = 1'b0;
|
541 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_2.mem[i] = 1'b0;
|
542 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_3.mem[i] = 1'b0;
|
543 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_4.mem[i] = 1'b0;
|
544 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_5.mem[i] = 1'b0;
|
545 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_6.mem[i] = 1'b0;
|
546 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.xcv_ram32x8d_3.ram32x1d_7.mem[i] = 1'b0;
|
547 |
|
|
end
|
548 |
|
|
`endif
|
549 |
|
|
`else
|
550 |
|
|
for ( i = 0; i < (1<<5); i = i + 1 ) begin
|
551 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_a.mem[i] = 32'h0000_0000;
|
552 |
|
|
minsoc_top_0.or1200_top.or1200_cpu.or1200_rf.rf_b.mem[i] = 32'h0000_0000;
|
553 |
|
|
end
|
554 |
|
|
`endif
|
555 |
|
|
`endif
|
556 |
|
|
end
|
557 |
|
|
endtask
|
558 |
|
|
|
559 |
|
|
endmodule
|
560 |
|
|
|