RAMB16_S36.v
24.1 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
/*
FUNCTION : 16x36 Block RAM with synchronous write capability
*/
`timescale 100 ps / 10 ps
module RAMB16_S36 (DO, DOP, ADDR, CLK, DI, DIP, EN, SSR, WE);
parameter INIT = 36'h0;
parameter SRVAL = 36'h0;
parameter WRITE_MODE = "WRITE_FIRST";
parameter INIT_00 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_01 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_02 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_03 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_04 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_05 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_06 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_07 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_08 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_09 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0A = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0B = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0C = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0D = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0E = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_0F = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_10 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_11 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_12 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_13 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_14 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_15 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_16 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_17 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_18 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_19 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1A = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1B = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1C = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1D = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1E = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_1F = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_20 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_21 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_22 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_23 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_24 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_25 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_26 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_27 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_28 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_29 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2A = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2B = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2C = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2D = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2E = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_2F = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_30 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_31 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_32 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_33 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_34 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_35 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_36 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_37 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_38 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_39 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3A = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3B = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3C = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3D = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3E = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INIT_3F = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_00 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_01 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_02 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_03 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_04 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_05 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_06 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
parameter INITP_07 = 256'h0000000000000000000000000000000000000000000000000000000000000000;
output [31:0] DO;
output [3:0] DOP;
reg do0_out, do1_out, do2_out, do3_out, do4_out, do5_out, do6_out, do7_out, do8_out, do9_out, do10_out, do11_out, do12_out, do13_out, do14_out, do15_out, do16_out, do17_out, do18_out, do19_out, do20_out, do21_out, do22_out, do23_out, do24_out, do25_out, do26_out, do27_out, do28_out, do29_out, do30_out, do31_out;
reg dop0_out, dop1_out, dop2_out, dop3_out;
input [8:0] ADDR;
input [31:0] DI;
input [3:0] DIP;
input EN, CLK, WE, SSR;
reg [18431:0] mem;
reg [8:0] count;
reg [1:0] wr_mode;
wire [8:0] addr_int;
wire [31:0] di_int;
wire [3:0] dip_int;
wire en_int, clk_int, we_int, ssr_int;
tri0 GSR = glbl.GSR;
always @(GSR)
if (GSR) begin
assign do0_out = INIT[0];
assign do1_out = INIT[1];
assign do2_out = INIT[2];
assign do3_out = INIT[3];
assign do4_out = INIT[4];
assign do5_out = INIT[5];
assign do6_out = INIT[6];
assign do7_out = INIT[7];
assign do8_out = INIT[8];
assign do9_out = INIT[9];
assign do10_out = INIT[10];
assign do11_out = INIT[11];
assign do12_out = INIT[12];
assign do13_out = INIT[13];
assign do14_out = INIT[14];
assign do15_out = INIT[15];
assign do16_out = INIT[16];
assign do17_out = INIT[17];
assign do18_out = INIT[18];
assign do19_out = INIT[19];
assign do20_out = INIT[20];
assign do21_out = INIT[21];
assign do22_out = INIT[22];
assign do23_out = INIT[23];
assign do24_out = INIT[24];
assign do25_out = INIT[25];
assign do26_out = INIT[26];
assign do27_out = INIT[27];
assign do28_out = INIT[28];
assign do29_out = INIT[29];
assign do30_out = INIT[30];
assign do31_out = INIT[31];
assign dop0_out = INIT[32];
assign dop1_out = INIT[33];
assign dop2_out = INIT[34];
assign dop3_out = INIT[35];
end
else begin
deassign do0_out;
deassign do1_out;
deassign do2_out;
deassign do3_out;
deassign do4_out;
deassign do5_out;
deassign do6_out;
deassign do7_out;
deassign do8_out;
deassign do9_out;
deassign do10_out;
deassign do11_out;
deassign do12_out;
deassign do13_out;
deassign do14_out;
deassign do15_out;
deassign do16_out;
deassign do17_out;
deassign do18_out;
deassign do19_out;
deassign do20_out;
deassign do21_out;
deassign do22_out;
deassign do23_out;
deassign do24_out;
deassign do25_out;
deassign do26_out;
deassign do27_out;
deassign do28_out;
deassign do29_out;
deassign do30_out;
deassign do31_out;
deassign dop0_out;
deassign dop1_out;
deassign dop2_out;
deassign dop3_out;
end
buf b_do_out0 (DO[0], do0_out);
buf b_do_out1 (DO[1], do1_out);
buf b_do_out2 (DO[2], do2_out);
buf b_do_out3 (DO[3], do3_out);
buf b_do_out4 (DO[4], do4_out);
buf b_do_out5 (DO[5], do5_out);
buf b_do_out6 (DO[6], do6_out);
buf b_do_out7 (DO[7], do7_out);
buf b_do_out8 (DO[8], do8_out);
buf b_do_out9 (DO[9], do9_out);
buf b_do_out10 (DO[10], do10_out);
buf b_do_out11 (DO[11], do11_out);
buf b_do_out12 (DO[12], do12_out);
buf b_do_out13 (DO[13], do13_out);
buf b_do_out14 (DO[14], do14_out);
buf b_do_out15 (DO[15], do15_out);
buf b_do_out16 (DO[16], do16_out);
buf b_do_out17 (DO[17], do17_out);
buf b_do_out18 (DO[18], do18_out);
buf b_do_out19 (DO[19], do19_out);
buf b_do_out20 (DO[20], do20_out);
buf b_do_out21 (DO[21], do21_out);
buf b_do_out22 (DO[22], do22_out);
buf b_do_out23 (DO[23], do23_out);
buf b_do_out24 (DO[24], do24_out);
buf b_do_out25 (DO[25], do25_out);
buf b_do_out26 (DO[26], do26_out);
buf b_do_out27 (DO[27], do27_out);
buf b_do_out28 (DO[28], do28_out);
buf b_do_out29 (DO[29], do29_out);
buf b_do_out30 (DO[30], do30_out);
buf b_do_out31 (DO[31], do31_out);
buf b_dop_out0 (DOP[0], dop0_out);
buf b_dop_out1 (DOP[1], dop1_out);
buf b_dop_out2 (DOP[2], dop2_out);
buf b_dop_out3 (DOP[3], dop3_out);
buf b_addr_0 (addr_int[0], ADDR[0]);
buf b_addr_1 (addr_int[1], ADDR[1]);
buf b_addr_2 (addr_int[2], ADDR[2]);
buf b_addr_3 (addr_int[3], ADDR[3]);
buf b_addr_4 (addr_int[4], ADDR[4]);
buf b_addr_5 (addr_int[5], ADDR[5]);
buf b_addr_6 (addr_int[6], ADDR[6]);
buf b_addr_7 (addr_int[7], ADDR[7]);
buf b_addr_8 (addr_int[8], ADDR[8]);
buf b_di_0 (di_int[0], DI[0]);
buf b_di_1 (di_int[1], DI[1]);
buf b_di_2 (di_int[2], DI[2]);
buf b_di_3 (di_int[3], DI[3]);
buf b_di_4 (di_int[4], DI[4]);
buf b_di_5 (di_int[5], DI[5]);
buf b_di_6 (di_int[6], DI[6]);
buf b_di_7 (di_int[7], DI[7]);
buf b_di_8 (di_int[8], DI[8]);
buf b_di_9 (di_int[9], DI[9]);
buf b_di_10 (di_int[10], DI[10]);
buf b_di_11 (di_int[11], DI[11]);
buf b_di_12 (di_int[12], DI[12]);
buf b_di_13 (di_int[13], DI[13]);
buf b_di_14 (di_int[14], DI[14]);
buf b_di_15 (di_int[15], DI[15]);
buf b_di_16 (di_int[16], DI[16]);
buf b_di_17 (di_int[17], DI[17]);
buf b_di_18 (di_int[18], DI[18]);
buf b_di_19 (di_int[19], DI[19]);
buf b_di_20 (di_int[20], DI[20]);
buf b_di_21 (di_int[21], DI[21]);
buf b_di_22 (di_int[22], DI[22]);
buf b_di_23 (di_int[23], DI[23]);
buf b_di_24 (di_int[24], DI[24]);
buf b_di_25 (di_int[25], DI[25]);
buf b_di_26 (di_int[26], DI[26]);
buf b_di_27 (di_int[27], DI[27]);
buf b_di_28 (di_int[28], DI[28]);
buf b_di_29 (di_int[29], DI[29]);
buf b_di_30 (di_int[30], DI[30]);
buf b_di_31 (di_int[31], DI[31]);
buf b_dip_0 (dip_int[0], DIP[0]);
buf b_dip_1 (dip_int[1], DIP[1]);
buf b_dip_2 (dip_int[2], DIP[2]);
buf b_dip_3 (dip_int[3], DIP[3]);
buf b_en (en_int, EN);
buf b_clk (clk_int, CLK);
buf b_we (we_int, WE);
buf b_ssr (ssr_int, SSR);
initial begin
for (count = 0; count < 256; count = count + 1) begin
mem[count] <= INIT_00[count];
mem[256 * 1 + count] <= INIT_01[count];
mem[256 * 2 + count] <= INIT_02[count];
mem[256 * 3 + count] <= INIT_03[count];
mem[256 * 4 + count] <= INIT_04[count];
mem[256 * 5 + count] <= INIT_05[count];
mem[256 * 6 + count] <= INIT_06[count];
mem[256 * 7 + count] <= INIT_07[count];
mem[256 * 8 + count] <= INIT_08[count];
mem[256 * 9 + count] <= INIT_09[count];
mem[256 * 10 + count] <= INIT_0A[count];
mem[256 * 11 + count] <= INIT_0B[count];
mem[256 * 12 + count] <= INIT_0C[count];
mem[256 * 13 + count] <= INIT_0D[count];
mem[256 * 14 + count] <= INIT_0E[count];
mem[256 * 15 + count] <= INIT_0F[count];
mem[256 * 16 + count] <= INIT_10[count];
mem[256 * 17 + count] <= INIT_11[count];
mem[256 * 18 + count] <= INIT_12[count];
mem[256 * 19 + count] <= INIT_13[count];
mem[256 * 20 + count] <= INIT_14[count];
mem[256 * 21 + count] <= INIT_15[count];
mem[256 * 22 + count] <= INIT_16[count];
mem[256 * 23 + count] <= INIT_17[count];
mem[256 * 24 + count] <= INIT_18[count];
mem[256 * 25 + count] <= INIT_19[count];
mem[256 * 26 + count] <= INIT_1A[count];
mem[256 * 27 + count] <= INIT_1B[count];
mem[256 * 28 + count] <= INIT_1C[count];
mem[256 * 29 + count] <= INIT_1D[count];
mem[256 * 30 + count] <= INIT_1E[count];
mem[256 * 31 + count] <= INIT_1F[count];
mem[256 * 32 + count] <= INIT_20[count];
mem[256 * 33 + count] <= INIT_21[count];
mem[256 * 34 + count] <= INIT_22[count];
mem[256 * 35 + count] <= INIT_23[count];
mem[256 * 36 + count] <= INIT_24[count];
mem[256 * 37 + count] <= INIT_25[count];
mem[256 * 38 + count] <= INIT_26[count];
mem[256 * 39 + count] <= INIT_27[count];
mem[256 * 40 + count] <= INIT_28[count];
mem[256 * 41 + count] <= INIT_29[count];
mem[256 * 42 + count] <= INIT_2A[count];
mem[256 * 43 + count] <= INIT_2B[count];
mem[256 * 44 + count] <= INIT_2C[count];
mem[256 * 45 + count] <= INIT_2D[count];
mem[256 * 46 + count] <= INIT_2E[count];
mem[256 * 47 + count] <= INIT_2F[count];
mem[256 * 48 + count] <= INIT_30[count];
mem[256 * 49 + count] <= INIT_31[count];
mem[256 * 50 + count] <= INIT_32[count];
mem[256 * 51 + count] <= INIT_33[count];
mem[256 * 52 + count] <= INIT_34[count];
mem[256 * 53 + count] <= INIT_35[count];
mem[256 * 54 + count] <= INIT_36[count];
mem[256 * 55 + count] <= INIT_37[count];
mem[256 * 56 + count] <= INIT_38[count];
mem[256 * 57 + count] <= INIT_39[count];
mem[256 * 58 + count] <= INIT_3A[count];
mem[256 * 59 + count] <= INIT_3B[count];
mem[256 * 60 + count] <= INIT_3C[count];
mem[256 * 61 + count] <= INIT_3D[count];
mem[256 * 62 + count] <= INIT_3E[count];
mem[256 * 63 + count] <= INIT_3F[count];
mem[256 * 64 + count] <= INITP_00[count];
mem[256 * 65 + count] <= INITP_01[count];
mem[256 * 66 + count] <= INITP_02[count];
mem[256 * 67 + count] <= INITP_03[count];
mem[256 * 68 + count] <= INITP_04[count];
mem[256 * 69 + count] <= INITP_05[count];
mem[256 * 70 + count] <= INITP_06[count];
mem[256 * 71 + count] <= INITP_07[count];
end
end
initial begin
case (WRITE_MODE)
"WRITE_FIRST" : wr_mode <= 2'b00;
"READ_FIRST" : wr_mode <= 2'b01;
"NO_CHANGE" : wr_mode <= 2'b10;
default : begin
$display("Attribute Syntax Error : The attribute WRITE_MODE on RAMB16_S36 instance %m is set to %s. The legal values for this attribute are WRITE_FIRST, READ_FIRST or NO_CHANGE.", WRITE_MODE);
$finish;
end
endcase
end
always @(posedge clk_int) begin
if (en_int == 1'b1) begin
if (ssr_int == 1'b1) begin
do0_out <= SRVAL[0];
do1_out <= SRVAL[1];
do2_out <= SRVAL[2];
do3_out <= SRVAL[3];
do4_out <= SRVAL[4];
do5_out <= SRVAL[5];
do6_out <= SRVAL[6];
do7_out <= SRVAL[7];
do8_out <= SRVAL[8];
do9_out <= SRVAL[9];
do10_out <= SRVAL[10];
do11_out <= SRVAL[11];
do12_out <= SRVAL[12];
do13_out <= SRVAL[13];
do14_out <= SRVAL[14];
do15_out <= SRVAL[15];
do16_out <= SRVAL[16];
do17_out <= SRVAL[17];
do18_out <= SRVAL[18];
do19_out <= SRVAL[19];
do20_out <= SRVAL[20];
do21_out <= SRVAL[21];
do22_out <= SRVAL[22];
do23_out <= SRVAL[23];
do24_out <= SRVAL[24];
do25_out <= SRVAL[25];
do26_out <= SRVAL[26];
do27_out <= SRVAL[27];
do28_out <= SRVAL[28];
do29_out <= SRVAL[29];
do30_out <= SRVAL[30];
do31_out <= SRVAL[31];
dop0_out <= SRVAL[32];
dop1_out <= SRVAL[33];
dop2_out <= SRVAL[34];
dop3_out <= SRVAL[35];
end
else begin
if (we_int == 1'b1) begin
if (wr_mode == 2'b00) begin
do0_out <= di_int[0];
do1_out <= di_int[1];
do2_out <= di_int[2];
do3_out <= di_int[3];
do4_out <= di_int[4];
do5_out <= di_int[5];
do6_out <= di_int[6];
do7_out <= di_int[7];
do8_out <= di_int[8];
do9_out <= di_int[9];
do10_out <= di_int[10];
do11_out <= di_int[11];
do12_out <= di_int[12];
do13_out <= di_int[13];
do14_out <= di_int[14];
do15_out <= di_int[15];
do16_out <= di_int[16];
do17_out <= di_int[17];
do18_out <= di_int[18];
do19_out <= di_int[19];
do20_out <= di_int[20];
do21_out <= di_int[21];
do22_out <= di_int[22];
do23_out <= di_int[23];
do24_out <= di_int[24];
do25_out <= di_int[25];
do26_out <= di_int[26];
do27_out <= di_int[27];
do28_out <= di_int[28];
do29_out <= di_int[29];
do30_out <= di_int[30];
do31_out <= di_int[31];
dop0_out <= dip_int[0];
dop1_out <= dip_int[1];
dop2_out <= dip_int[2];
dop3_out <= dip_int[3];
end
else if (wr_mode == 2'b01) begin
do0_out <= mem[addr_int * 32 + 0];
do1_out <= mem[addr_int * 32 + 1];
do2_out <= mem[addr_int * 32 + 2];
do3_out <= mem[addr_int * 32 + 3];
do4_out <= mem[addr_int * 32 + 4];
do5_out <= mem[addr_int * 32 + 5];
do6_out <= mem[addr_int * 32 + 6];
do7_out <= mem[addr_int * 32 + 7];
do8_out <= mem[addr_int * 32 + 8];
do9_out <= mem[addr_int * 32 + 9];
do10_out <= mem[addr_int * 32 + 10];
do11_out <= mem[addr_int * 32 + 11];
do12_out <= mem[addr_int * 32 + 12];
do13_out <= mem[addr_int * 32 + 13];
do14_out <= mem[addr_int * 32 + 14];
do15_out <= mem[addr_int * 32 + 15];
do16_out <= mem[addr_int * 32 + 16];
do17_out <= mem[addr_int * 32 + 17];
do18_out <= mem[addr_int * 32 + 18];
do19_out <= mem[addr_int * 32 + 19];
do20_out <= mem[addr_int * 32 + 20];
do21_out <= mem[addr_int * 32 + 21];
do22_out <= mem[addr_int * 32 + 22];
do23_out <= mem[addr_int * 32 + 23];
do24_out <= mem[addr_int * 32 + 24];
do25_out <= mem[addr_int * 32 + 25];
do26_out <= mem[addr_int * 32 + 26];
do27_out <= mem[addr_int * 32 + 27];
do28_out <= mem[addr_int * 32 + 28];
do29_out <= mem[addr_int * 32 + 29];
do30_out <= mem[addr_int * 32 + 30];
do31_out <= mem[addr_int * 32 + 31];
dop0_out <= mem[16384 + addr_int * 4 + 0];
dop1_out <= mem[16384 + addr_int * 4 + 1];
dop2_out <= mem[16384 + addr_int * 4 + 2];
dop3_out <= mem[16384 + addr_int * 4 + 3];
end
else begin
do0_out <= do0_out;
do1_out <= do1_out;
do2_out <= do2_out;
do3_out <= do3_out;
do4_out <= do4_out;
do5_out <= do5_out;
do6_out <= do6_out;
do7_out <= do7_out;
do8_out <= do8_out;
do9_out <= do9_out;
do10_out <= do10_out;
do11_out <= do11_out;
do12_out <= do12_out;
do13_out <= do13_out;
do14_out <= do14_out;
do15_out <= do15_out;
do16_out <= do16_out;
do17_out <= do17_out;
do18_out <= do18_out;
do19_out <= do19_out;
do20_out <= do20_out;
do21_out <= do21_out;
do22_out <= do22_out;
do23_out <= do23_out;
do24_out <= do24_out;
do25_out <= do25_out;
do26_out <= do26_out;
do27_out <= do27_out;
do28_out <= do28_out;
do29_out <= do29_out;
do30_out <= do30_out;
do31_out <= do31_out;
dop0_out <= dop0_out;
dop1_out <= dop1_out;
dop2_out <= dop2_out;
dop3_out <= dop3_out;
end
end
else begin
do0_out <= mem[addr_int * 32 + 0];
do1_out <= mem[addr_int * 32 + 1];
do2_out <= mem[addr_int * 32 + 2];
do3_out <= mem[addr_int * 32 + 3];
do4_out <= mem[addr_int * 32 + 4];
do5_out <= mem[addr_int * 32 + 5];
do6_out <= mem[addr_int * 32 + 6];
do7_out <= mem[addr_int * 32 + 7];
do8_out <= mem[addr_int * 32 + 8];
do9_out <= mem[addr_int * 32 + 9];
do10_out <= mem[addr_int * 32 + 10];
do11_out <= mem[addr_int * 32 + 11];
do12_out <= mem[addr_int * 32 + 12];
do13_out <= mem[addr_int * 32 + 13];
do14_out <= mem[addr_int * 32 + 14];
do15_out <= mem[addr_int * 32 + 15];
do16_out <= mem[addr_int * 32 + 16];
do17_out <= mem[addr_int * 32 + 17];
do18_out <= mem[addr_int * 32 + 18];
do19_out <= mem[addr_int * 32 + 19];
do20_out <= mem[addr_int * 32 + 20];
do21_out <= mem[addr_int * 32 + 21];
do22_out <= mem[addr_int * 32 + 22];
do23_out <= mem[addr_int * 32 + 23];
do24_out <= mem[addr_int * 32 + 24];
do25_out <= mem[addr_int * 32 + 25];
do26_out <= mem[addr_int * 32 + 26];
do27_out <= mem[addr_int * 32 + 27];
do28_out <= mem[addr_int * 32 + 28];
do29_out <= mem[addr_int * 32 + 29];
do30_out <= mem[addr_int * 32 + 30];
do31_out <= mem[addr_int * 32 + 31];
dop0_out <= mem[16384 + addr_int * 4 + 0];
dop1_out <= mem[16384 + addr_int * 4 + 1];
dop2_out <= mem[16384 + addr_int * 4 + 2];
dop3_out <= mem[16384 + addr_int * 4 + 3];
end
end
end
end
always @(posedge clk_int) begin
if (en_int == 1'b1 && we_int == 1'b1) begin
mem[addr_int * 32 + 0] <= di_int[0];
mem[addr_int * 32 + 1] <= di_int[1];
mem[addr_int * 32 + 2] <= di_int[2];
mem[addr_int * 32 + 3] <= di_int[3];
mem[addr_int * 32 + 4] <= di_int[4];
mem[addr_int * 32 + 5] <= di_int[5];
mem[addr_int * 32 + 6] <= di_int[6];
mem[addr_int * 32 + 7] <= di_int[7];
mem[addr_int * 32 + 8] <= di_int[8];
mem[addr_int * 32 + 9] <= di_int[9];
mem[addr_int * 32 + 10] <= di_int[10];
mem[addr_int * 32 + 11] <= di_int[11];
mem[addr_int * 32 + 12] <= di_int[12];
mem[addr_int * 32 + 13] <= di_int[13];
mem[addr_int * 32 + 14] <= di_int[14];
mem[addr_int * 32 + 15] <= di_int[15];
mem[addr_int * 32 + 16] <= di_int[16];
mem[addr_int * 32 + 17] <= di_int[17];
mem[addr_int * 32 + 18] <= di_int[18];
mem[addr_int * 32 + 19] <= di_int[19];
mem[addr_int * 32 + 20] <= di_int[20];
mem[addr_int * 32 + 21] <= di_int[21];
mem[addr_int * 32 + 22] <= di_int[22];
mem[addr_int * 32 + 23] <= di_int[23];
mem[addr_int * 32 + 24] <= di_int[24];
mem[addr_int * 32 + 25] <= di_int[25];
mem[addr_int * 32 + 26] <= di_int[26];
mem[addr_int * 32 + 27] <= di_int[27];
mem[addr_int * 32 + 28] <= di_int[28];
mem[addr_int * 32 + 29] <= di_int[29];
mem[addr_int * 32 + 30] <= di_int[30];
mem[addr_int * 32 + 31] <= di_int[31];
mem[16384 + addr_int * 4 + 0] <= dip_int[0];
mem[16384 + addr_int * 4 + 1] <= dip_int[1];
mem[16384 + addr_int * 4 + 2] <= dip_int[2];
mem[16384 + addr_int * 4 + 3] <= dip_int[3];
end
end
specify
(CLK *> DO) = (1, 1);
(CLK *> DOP) = (1, 1);
endspecify
endmodule