-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathram_memory.vhd
971 lines (956 loc) · 86 KB
/
ram_memory.vhd
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
-- VHDL netlist generated by SCUBA Diamond (64-bit) 3.6.0.83.4
-- Module Version: 7.5
--C:\lscc\diamond\3.6_x64\ispfpga\bin\nt64\scuba.exe -w -n ram_memory -lang vhdl -synth lse -arch mg5a00 -type bram -wp 10 -rp 1000 -addr_width 13 -data_width 8 -num_rows 8192 -writemode NORMAL -resetmode SYNC -memfile c:/lscc/ep8080/ep202.mem -memformat orca -cascade -1
-- Wed Mar 23 18:33:22 2016
library IEEE;
use IEEE.std_logic_1164.all;
-- synopsys translate_off
library xp2;
use xp2.components.all;
-- synopsys translate_on
entity ram_memory is
port (
Clock: in std_logic;
ClockEn: in std_logic;
Reset: in std_logic;
WE: in std_logic;
Address0: in std_logic;
Address1: in std_logic;
Address2: in std_logic;
Address3: in std_logic;
Address4: in std_logic;
Address5: in std_logic;
Address6: in std_logic;
Address7: in std_logic;
Address8: in std_logic;
Address9: in std_logic;
Address10: in std_logic;
Address11: in std_logic;
Address12: in std_logic;
Data0: in std_logic;
Data1: in std_logic;
Data2: in std_logic;
Data3: in std_logic;
Data4: in std_logic;
Data5: in std_logic;
Data6: in std_logic;
Data7: in std_logic;
Q0: out std_logic;
Q1: out std_logic;
Q2: out std_logic;
Q3: out std_logic;
Q4: out std_logic;
Q5: out std_logic;
Q6: out std_logic;
Q7: out std_logic);
end ram_memory;
architecture Structure of ram_memory is
-- internal signal declarations
signal scuba_vhi: std_logic;
signal scuba_vlo: std_logic;
-- local component declarations
component VHI
port (Z: out std_logic);
end component;
component VLO
port (Z: out std_logic);
end component;
component DP16KB
-- synopsys translate_off
generic (INITVAL_3F : in String; INITVAL_3E : in String;
INITVAL_3D : in String; INITVAL_3C : in String;
INITVAL_3B : in String; INITVAL_3A : in String;
INITVAL_39 : in String; INITVAL_38 : in String;
INITVAL_37 : in String; INITVAL_36 : in String;
INITVAL_35 : in String; INITVAL_34 : in String;
INITVAL_33 : in String; INITVAL_32 : in String;
INITVAL_31 : in String; INITVAL_30 : in String;
INITVAL_2F : in String; INITVAL_2E : in String;
INITVAL_2D : in String; INITVAL_2C : in String;
INITVAL_2B : in String; INITVAL_2A : in String;
INITVAL_29 : in String; INITVAL_28 : in String;
INITVAL_27 : in String; INITVAL_26 : in String;
INITVAL_25 : in String; INITVAL_24 : in String;
INITVAL_23 : in String; INITVAL_22 : in String;
INITVAL_21 : in String; INITVAL_20 : in String;
INITVAL_1F : in String; INITVAL_1E : in String;
INITVAL_1D : in String; INITVAL_1C : in String;
INITVAL_1B : in String; INITVAL_1A : in String;
INITVAL_19 : in String; INITVAL_18 : in String;
INITVAL_17 : in String; INITVAL_16 : in String;
INITVAL_15 : in String; INITVAL_14 : in String;
INITVAL_13 : in String; INITVAL_12 : in String;
INITVAL_11 : in String; INITVAL_10 : in String;
INITVAL_0F : in String; INITVAL_0E : in String;
INITVAL_0D : in String; INITVAL_0C : in String;
INITVAL_0B : in String; INITVAL_0A : in String;
INITVAL_09 : in String; INITVAL_08 : in String;
INITVAL_07 : in String; INITVAL_06 : in String;
INITVAL_05 : in String; INITVAL_04 : in String;
INITVAL_03 : in String; INITVAL_02 : in String;
INITVAL_01 : in String; INITVAL_00 : in String;
GSR : in String; WRITEMODE_B : in String;
CSDECODE_B : in std_logic_vector(2 downto 0);
CSDECODE_A : in std_logic_vector(2 downto 0);
WRITEMODE_A : in String; RESETMODE : in String;
REGMODE_B : in String; REGMODE_A : in String;
DATA_WIDTH_B : in Integer; DATA_WIDTH_A : in Integer);
-- synopsys translate_on
port (DIA0: in std_logic; DIA1: in std_logic; DIA2: in std_logic;
DIA3: in std_logic; DIA4: in std_logic; DIA5: in std_logic;
DIA6: in std_logic; DIA7: in std_logic; DIA8: in std_logic;
DIA9: in std_logic; DIA10: in std_logic; DIA11: in std_logic;
DIA12: in std_logic; DIA13: in std_logic; DIA14: in std_logic;
DIA15: in std_logic; DIA16: in std_logic; DIA17: in std_logic;
ADA0: in std_logic; ADA1: in std_logic; ADA2: in std_logic;
ADA3: in std_logic; ADA4: in std_logic; ADA5: in std_logic;
ADA6: in std_logic; ADA7: in std_logic; ADA8: in std_logic;
ADA9: in std_logic; ADA10: in std_logic; ADA11: in std_logic;
ADA12: in std_logic; ADA13: in std_logic; CEA: in std_logic;
CLKA: in std_logic; WEA: in std_logic; CSA0: in std_logic;
CSA1: in std_logic; CSA2: in std_logic; RSTA: in std_logic;
DIB0: in std_logic; DIB1: in std_logic; DIB2: in std_logic;
DIB3: in std_logic; DIB4: in std_logic; DIB5: in std_logic;
DIB6: in std_logic; DIB7: in std_logic; DIB8: in std_logic;
DIB9: in std_logic; DIB10: in std_logic; DIB11: in std_logic;
DIB12: in std_logic; DIB13: in std_logic; DIB14: in std_logic;
DIB15: in std_logic; DIB16: in std_logic; DIB17: in std_logic;
ADB0: in std_logic; ADB1: in std_logic; ADB2: in std_logic;
ADB3: in std_logic; ADB4: in std_logic; ADB5: in std_logic;
ADB6: in std_logic; ADB7: in std_logic; ADB8: in std_logic;
ADB9: in std_logic; ADB10: in std_logic; ADB11: in std_logic;
ADB12: in std_logic; ADB13: in std_logic; CEB: in std_logic;
CLKB: in std_logic; WEB: in std_logic; CSB0: in std_logic;
CSB1: in std_logic; CSB2: in std_logic; RSTB: in std_logic;
DOA0: out std_logic; DOA1: out std_logic; DOA2: out std_logic;
DOA3: out std_logic; DOA4: out std_logic; DOA5: out std_logic;
DOA6: out std_logic; DOA7: out std_logic; DOA8: out std_logic;
DOA9: out std_logic; DOA10: out std_logic; DOA11: out std_logic;
DOA12: out std_logic; DOA13: out std_logic; DOA14: out std_logic;
DOA15: out std_logic; DOA16: out std_logic; DOA17: out std_logic;
DOB0: out std_logic; DOB1: out std_logic; DOB2: out std_logic;
DOB3: out std_logic; DOB4: out std_logic; DOB5: out std_logic;
DOB6: out std_logic; DOB7: out std_logic; DOB8: out std_logic;
DOB9: out std_logic; DOB10: out std_logic; DOB11: out std_logic;
DOB12: out std_logic; DOB13: out std_logic; DOB14: out std_logic;
DOB15: out std_logic; DOB16: out std_logic; DOB17: out std_logic);
end component;
attribute MEM_LPC_FILE : string;
attribute MEM_INIT_FILE : string;
attribute INITVAL_3F : string;
attribute INITVAL_3E : string;
attribute INITVAL_3D : string;
attribute INITVAL_3C : string;
attribute INITVAL_3B : string;
attribute INITVAL_3A : string;
attribute INITVAL_39 : string;
attribute INITVAL_38 : string;
attribute INITVAL_37 : string;
attribute INITVAL_36 : string;
attribute INITVAL_35 : string;
attribute INITVAL_34 : string;
attribute INITVAL_33 : string;
attribute INITVAL_32 : string;
attribute INITVAL_31 : string;
attribute INITVAL_30 : string;
attribute INITVAL_2F : string;
attribute INITVAL_2E : string;
attribute INITVAL_2D : string;
attribute INITVAL_2C : string;
attribute INITVAL_2B : string;
attribute INITVAL_2A : string;
attribute INITVAL_29 : string;
attribute INITVAL_28 : string;
attribute INITVAL_27 : string;
attribute INITVAL_26 : string;
attribute INITVAL_25 : string;
attribute INITVAL_24 : string;
attribute INITVAL_23 : string;
attribute INITVAL_22 : string;
attribute INITVAL_21 : string;
attribute INITVAL_20 : string;
attribute INITVAL_1F : string;
attribute INITVAL_1E : string;
attribute INITVAL_1D : string;
attribute INITVAL_1C : string;
attribute INITVAL_1B : string;
attribute INITVAL_1A : string;
attribute INITVAL_19 : string;
attribute INITVAL_18 : string;
attribute INITVAL_17 : string;
attribute INITVAL_16 : string;
attribute INITVAL_15 : string;
attribute INITVAL_14 : string;
attribute INITVAL_13 : string;
attribute INITVAL_12 : string;
attribute INITVAL_11 : string;
attribute INITVAL_10 : string;
attribute INITVAL_0F : string;
attribute INITVAL_0E : string;
attribute INITVAL_0D : string;
attribute INITVAL_0C : string;
attribute INITVAL_0B : string;
attribute INITVAL_0A : string;
attribute INITVAL_09 : string;
attribute INITVAL_08 : string;
attribute INITVAL_07 : string;
attribute INITVAL_06 : string;
attribute INITVAL_05 : string;
attribute INITVAL_04 : string;
attribute INITVAL_03 : string;
attribute INITVAL_02 : string;
attribute INITVAL_01 : string;
attribute INITVAL_00 : string;
attribute CSDECODE_B : string;
attribute CSDECODE_A : string;
attribute WRITEMODE_B : string;
attribute WRITEMODE_A : string;
attribute GSR : string;
attribute RESETMODE : string;
attribute REGMODE_B : string;
attribute REGMODE_A : string;
attribute DATA_WIDTH_B : string;
attribute DATA_WIDTH_A : string;
attribute MEM_LPC_FILE of ram_memory_0_0_3 : label is "ram_memory.lpc";
attribute MEM_INIT_FILE of ram_memory_0_0_3 : label is "ep202.mem";
attribute INITVAL_3F of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3E of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3D of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3C of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3B of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3A of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_39 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_38 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_37 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_36 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_35 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_34 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_33 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_32 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_31 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_30 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2F of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2E of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2D of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2C of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2B of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2A of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_29 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_28 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_27 of ram_memory_0_0_3 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_26 of ram_memory_0_0_3 : label is "0x000000000000000000000000000000000000000000000000000000000000000000000000000058A0";
attribute INITVAL_25 of ram_memory_0_0_3 : label is "0x1D49A080B01088501E221D8531DA8109CA000077082521625804A7908E8214CA402E2F0D05619261";
attribute INITVAL_24 of ram_memory_0_0_3 : label is "0x13CC914A241522413A9D1222C0AAF902A5B1627108A321142A0286D1080B10A52092E4146BA192DA";
attribute INITVAL_23 of ram_memory_0_0_3 : label is "0x10A5612C101827B0EEB70F67716E7B0EA550A8171481612E550EC2404C2E0A862052951C0240AC02";
attribute INITVAL_22 of ram_memory_0_0_3 : label is "0x04A69028500A2420D0320CE420A88004A1709A46080900A8960C2460D888090CB08A451708513419";
attribute INITVAL_21 of ram_memory_0_0_3 : label is "0x1340010A4502A5102221044D10C8060D8480A01D06268044150904D10CC51A21614C81092B408C90";
attribute INITVAL_20 of ram_memory_0_0_3 : label is "0x100640804908098094800A8471809012A8510A91152DA03AAB1C2F41929C0B03D02A480A44606E02";
attribute INITVAL_1F of ram_memory_0_0_3 : label is "0x00E150AC7F08CDE18AAB08CDA18A8B08CDE18A8B136050785409AE11C8C10B84F028BC0A2491E859";
attribute INITVAL_1E of ram_memory_0_0_3 : label is "0x04059006C51243C0A246170640140A18A140B81900482162661A292162651AE86094C5024580322B";
attribute INITVAL_1D of ram_memory_0_0_3 : label is "0x02818122810CE6600C1618ABB1626A1F0F8184210C0E80C8AC0A29107615092670E25103EE80CCC5";
attribute INITVAL_1C of ram_memory_0_0_3 : label is "0x0A21F1B0170D4671024E1626614878028680DC8506059028201A2761D899032B010A150385904E08";
attribute INITVAL_1B of ram_memory_0_0_3 : label is "0x0A2D8128550A8AA038991E85112205142C80BA4108401008B1022F10EA020CC2A002460489208257";
attribute INITVAL_1A of ram_memory_0_0_3 : label is "0x0E813048840E8210C4E60B0610969510AAC0125A0980A10A650A01E0AA42028230C433054770848E";
attribute INITVAL_19 of ram_memory_0_0_3 : label is "0x0BE51082F60027508A12026A0050020048104E14098310CE510E2441984401069108081941503A54";
attribute INITVAL_18 of ram_memory_0_0_3 : label is "0x0A4880FC851AA9E028E70EA450E4270E42108E450E42D0D44205E24044860BE260E4270C8450CE6A";
attribute INITVAL_17 of ram_memory_0_0_3 : label is "0x0CE410928F0202C042571C4AE0DE650DE651C45602E570E07D098A00B2591E2CA02C7C0F87D04605";
attribute INITVAL_16 of ram_memory_0_0_3 : label is "0x05E380B4DA08A1D03CC10424718A30090521706E1CAF915AA71B4E908A790361E0EA1E0EEE50AC75";
attribute INITVAL_15 of ram_memory_0_0_3 : label is "0x0F8250F02614468058A615C650D4540AE17004571446805C6E0CAA5144CA0D46C04E550D4151C868";
attribute INITVAL_14 of ram_memory_0_0_3 : label is "0x0DA851B214086181048204C910CC450203B18A9A00A1B12AC317A4514E8108CE50E6510D47109071";
attribute INITVAL_13 of ram_memory_0_0_3 : label is "0x094D80B85206E1508AF80EC71098D40888808885172C50A8980DA9D192450881C0A891192700105D";
attribute INITVAL_12 of ram_memory_0_0_3 : label is "0x1A69808C850E8D4038120FC620E217130710C4110AEC00B45F13AC01769D1B89312895030C913ED1";
attribute INITVAL_11 of ram_memory_0_0_3 : label is "0x14A1C11AA512AD5128AB1B239122700929512290108B001296028090B4451CC5B002E70ECD204EE3";
attribute INITVAL_10 of ram_memory_0_0_3 : label is "0x0442D0A22E004510E2D202269044140AE4C10AA401051066101CEEF1AA710C6C40F26D14A4517647";
attribute INITVAL_0F of ram_memory_0_0_3 : label is "0x088841305B0E6C7096491E05F170770B4451B8170D2760D214060C10D2B10E4D118814004141B01F";
attribute INITVAL_0E of ram_memory_0_0_3 : label is "0x10EC017A4C16A4410A1D03A17128671CA7109E4710E4010A760B81E1C4671D8240A814030B11D426";
attribute INITVAL_0D of ram_memory_0_0_3 : label is "0x0EC760CE5E04A1516E64084CA130540E84210E080B23B03E02102441D85A10A6405059032C504EDA";
attribute INITVAL_0C of ram_memory_0_0_3 : label is "0x02C4608E141541608C5402AA802C4F0CA410BC9106458046A304E53042641CCC401052138581105E";
attribute INITVAL_0B of ram_memory_0_0_3 : label is "0x1387F190551387C0905D120501105C03A511FC210A07510EC810AC11AC1508E1714A100EC5109AE5";
attribute INITVAL_0A of ram_memory_0_0_3 : label is "0x18E5413AF506A5A070591305518A9702A9605E7A0AA620FE7A0EA5A0EA32080210CAD00AA080BA11";
attribute INITVAL_09 of ram_memory_0_0_3 : label is "0x0A4141B844022940A67010A390089C0BED80929D0BE57118951B2C506E5202EF21CA140A0270A027";
attribute INITVAL_08 of ram_memory_0_0_3 : label is "0x0CA5204C7A0A8670FE7A0EA5A0EA5305C021DC141BA6003C7E0BC510C81E06254044D41C2651E055";
attribute INITVAL_07 of ram_memory_0_0_3 : label is "0x008B710A171E26E02C5C04C8E0287C0B68512A3C134380A2B80F884016CA00A5D03CE20CE1713E07";
attribute INITVAL_06 of ram_memory_0_0_3 : label is "0x1F0551A2F71422E0BC1503A8F18AB80A876170631905317A151427708A540A22300A540A68912247";
attribute INITVAL_05 of ram_memory_0_0_3 : label is "0x08A141DC451C89C0A232194C50682C05853150AC0A04B1F20B0280E114C5032D805616098B016266";
attribute INITVAL_04 of ram_memory_0_0_3 : label is "0x1D0AC0A238016151B0811ECB60E2670E48C16246122710CCC611E4507A0604A5D0F03D1967516673";
attribute INITVAL_03 of ram_memory_0_0_3 : label is "0x1B8B70B6941EE2D1A89D196F4160560A0901EA560D8731BA1F038F5088D01E8E00A6D507ACF0A043";
attribute INITVAL_02 of ram_memory_0_0_3 : label is "0x1B0FE128B507AE805A8F1D6EF14CA707ABB144901EEAE1DCAA0E6D2126901FA5E086DB122431DE55";
attribute INITVAL_01 of ram_memory_0_0_3 : label is "0x006FA1DCE80880508E47066EE0269A110FF05053134F107CE10E8FF1D61B166BB1406011E7A0E6E8";
attribute INITVAL_00 of ram_memory_0_0_3 : label is "0x1A62007AFB1C2310027D040261A4140A80108CF2004761C4150F8071DE94064FC002F01000207CB1";
attribute CSDECODE_B of ram_memory_0_0_3 : label is "0b111";
attribute CSDECODE_A of ram_memory_0_0_3 : label is "0b000";
attribute WRITEMODE_B of ram_memory_0_0_3 : label is "NORMAL";
attribute WRITEMODE_A of ram_memory_0_0_3 : label is "NORMAL";
attribute GSR of ram_memory_0_0_3 : label is "DISABLED";
attribute RESETMODE of ram_memory_0_0_3 : label is "SYNC";
attribute REGMODE_B of ram_memory_0_0_3 : label is "NOREG";
attribute REGMODE_A of ram_memory_0_0_3 : label is "NOREG";
attribute DATA_WIDTH_B of ram_memory_0_0_3 : label is "2";
attribute DATA_WIDTH_A of ram_memory_0_0_3 : label is "2";
attribute MEM_LPC_FILE of ram_memory_0_1_2 : label is "ram_memory.lpc";
attribute MEM_INIT_FILE of ram_memory_0_1_2 : label is "ep202.mem";
attribute INITVAL_3F of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3E of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3D of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3C of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3B of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3A of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_39 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_38 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_37 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_36 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_35 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_34 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_33 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_32 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_31 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_30 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2F of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2E of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2D of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2C of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2B of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2A of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_29 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_28 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_27 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_26 of ram_memory_0_1_2 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000001074";
attribute INITVAL_25 of ram_memory_0_1_2 : label is "0x1A0BD108F0190C30F8441083718A20106101106B100E8060330107310210026380184D0800C18424";
attribute INITVAL_24 of ram_memory_0_1_2 : label is "0x0880501C0C008CC008C503C3806A0201ACF1C4B0102330C00101AB00800C180C400AC80144C1804C";
attribute INITVAL_23 of ram_memory_0_1_2 : label is "0x186731A6001BAB9020910121012209022110300C1800004033000120260211080064220603802A03";
attribute INITVAL_22 of ram_memory_0_1_2 : label is "0x14232018D5020310940302221030A10600E1A0C3180C406E08030C3188C4018CE086510088001884";
attribute INITVAL_21 of ram_memory_0_1_2 : label is "0x19880186520BEA100010066901C0031E0CC07EC1060000660F0180F0860310400066201A274086F0";
attribute INITVAL_20 of ram_memory_0_1_2 : label is "0x0403C01080080CC1807006E8F030B00B8C60000419AC010808130780804407E4C006860025403610";
attribute INITVAL_1F of ram_memory_0_1_2 : label is "0x1820D09677006EF00633006E300613186F70061300EC00E03714AE01C2F01A65D002FF060D406800";
attribute INITVAL_1E of ram_memory_0_1_2 : label is "0x0B83D12EC000AF0068440E83C01AC7006460380F00670180D81E0F1180F808E83186031CE5E01E1C";
attribute INITVAL_1D of ram_memory_0_1_2 : label is "0x01A9D1C0701F247102C7006341C00204C571203019A34078F0078161BC010FE31000DE0787407E83";
attribute INITVAL_1C of ram_memory_0_1_2 : label is "0x1BC3C15802004410E0F01C00004E1701E38028830FE1E0180C120D31F87B0E870186640E8011860C";
attribute INITVAL_1B of ram_memory_0_1_2 : label is "0x06A100E8001F850078040C83C0AE400060C070E018080056F11C6C31A20307C01180D400AE618039";
attribute INITVAL_1A of ram_memory_0_1_2 : label is "0x1B0030706813800188C119AF01A60718000018C00680D1868503802006C11981E1E0530681B1A023";
attribute INITVAL_19 of ram_memory_0_1_2 : label is "0x004001A2011E0130260F01C4C004231A0230620C032D008400020C107000118110008F0008008004";
attribute INITVAL_18 of ram_memory_0_1_2 : label is "0x07638048C31B8D8002910E61301E170FA0002E1301C1B0627E03E371802103E3303E010627106201";
attribute INITVAL_17 of ram_memory_0_1_2 : label is "0x022101BC590003A020301201202410024101221401E700C008098D807ACD1608401E6D0D0151BC43";
attribute INITVAL_16 of ram_memory_0_1_2 : label is "0x09A680000C006CA00692060E2084241183B0581405008180C01181C0864003002000020002002813";
attribute INITVAL_15 of ram_memory_0_1_2 : label is "0x01411032141603B00643024100621100001006301424B00432020411603406249002100020D00064";
attribute INITVAL_14 of ram_memory_0_1_2 : label is "0x048C3192081160916022066201E40204499186D2084201002913843068B01102001610198A010C90";
attribute INITVAL_13 of ram_memory_0_1_2 : label is "0x1E62C0483C0900102226002001BA2C0008C018C3004801D050020460084309268040620084401831";
attribute INITVAL_12 of ram_memory_0_1_2 : label is "0x00068002030801B00633166900200F0BAA0100001CC280008018040198C0050441D00C08C8500094";
attribute INITVAL_11 of ram_memory_0_1_2 : label is "0x1906C048C80884505804108480884C1984100A061500C098411000C09883188DD100100221206221";
attribute INITVAL_10 of ram_memory_0_1_2 : label is "0x0760100432006101EC65140020460F0705608008018391140A08067042101882401018198C3182C1";
attribute INITVAL_0F of ram_memory_0_1_2 : label is "0x018E00183D10A4118A800B030028111188300E02006140660D1F27000660198400A2410060D00295";
attribute INITVAL_0E of ram_memory_0_1_2 : label is "0x180801904418808186660A8000C242062101B00518200186400AE030E24206A110220F1CA4006814";
attribute INITVAL_0D of ram_memory_0_1_2 : label is "0x00821022140220D0F858012C00983508C491060C06445004030E0D00280C106460A0040A0430EE17";
attribute INITVAL_0C of ram_memory_0_1_2 : label is "0x006130E20C00C000E001018050001206010190700663400A4306213060C206AC00183C038140183C";
attribute INITVAL_0B of ram_memory_0_1_2 : label is "0x0380B1983C038080183803814018331A26005E301FE4508080186BD02A0302A0F10806008101BEE5";
attribute INITVAL_0A of ram_memory_0_1_2 : label is "0x1801C002480904C1183B0200D08684006250240200250004020221202233020301DA140185407850";
attribute INITVAL_09 of ram_memory_0_1_2 : label is "0x06A0D1E201108C006EF50004C0B80100085180C4080041B804098430FED6002F30660106A1006C10";
attribute INITVAL_08 of ram_memory_0_1_2 : label is "0x086150020202210024020221202213066500260D1FE5400202024001F4650A0310C011060FB0000C";
attribute INITVAL_07 of ram_memory_0_1_2 : label is "0x0A0041868C00032006320062301E0001880198480188C07A08078C001880106C1006100620C00080";
attribute INITVAL_06 of ram_memory_0_1_2 : label is "0x1183C04020040320240D08AD40820806A170880B1983718403040E01000006244100CC0661102010";
attribute INITVAL_05 of ram_memory_0_1_2 : label is "0x0220D180000800406274000030864400030008C006C5F0243001AE01100318A530200C12231000FB";
attribute INITVAL_04 of ram_memory_0_1_2 : label is "0x00000066410000D0023004603000C40EA0C020C400000182D4080400020014C0B082010F6E007000";
attribute INITVAL_03 of ram_memory_0_1_2 : label is "0x02AB60060000A6D102C0100F00000A1180C00A400BA30020040800500A08000C506020000C00C000";
attribute INITVAL_02 of ram_memory_0_1_2 : label is "0x0000F00001002F8000001E08B1C0C00024F1C00000EC107EB0000111800800000060141800000000";
attribute INITVAL_01 of ram_memory_0_1_2 : label is "0x0603C026F914A080A86506013050C009000032C8180D0002320C8001E0311861F1CC741003C044F9";
attribute INITVAL_00 of ram_memory_0_1_2 : label is "0x05E520024B04CF50602C062011860D16A30022C3040111860E0DA090589406004006301000011E30";
attribute CSDECODE_B of ram_memory_0_1_2 : label is "0b111";
attribute CSDECODE_A of ram_memory_0_1_2 : label is "0b000";
attribute WRITEMODE_B of ram_memory_0_1_2 : label is "NORMAL";
attribute WRITEMODE_A of ram_memory_0_1_2 : label is "NORMAL";
attribute GSR of ram_memory_0_1_2 : label is "DISABLED";
attribute RESETMODE of ram_memory_0_1_2 : label is "SYNC";
attribute REGMODE_B of ram_memory_0_1_2 : label is "NOREG";
attribute REGMODE_A of ram_memory_0_1_2 : label is "NOREG";
attribute DATA_WIDTH_B of ram_memory_0_1_2 : label is "2";
attribute DATA_WIDTH_A of ram_memory_0_1_2 : label is "2";
attribute MEM_LPC_FILE of ram_memory_0_2_1 : label is "ram_memory.lpc";
attribute MEM_INIT_FILE of ram_memory_0_2_1 : label is "ep202.mem";
attribute INITVAL_3F of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3E of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3D of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3C of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3B of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3A of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_39 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_38 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_37 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_36 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_35 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_34 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_33 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_32 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_31 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_30 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2F of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2E of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2D of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2C of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2B of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2A of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_29 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_28 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_27 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_26 of ram_memory_0_2_1 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000003045";
attribute INITVAL_25 of ram_memory_0_2_1 : label is "0x00A4C108981008000015198040107301CFB1FA83000280861500236064700403000211028C508040";
attribute INITVAL_24 of ram_memory_0_2_1 : label is "0x11204130DC012D801008110080004607CA217033044120080200021198080184D008D40008508080";
attribute INITVAL_23 of ram_memory_0_2_1 : label is "0x1800018E3B17831046120622302431042110200110E300461106E1402C0302400046340222002012";
attribute INITVAL_22 of ram_memory_0_2_1 : label is "0x062020021008651044020446102620040021428C00094000010220C0189001214080100828C0004C";
attribute INITVAL_21 of ram_memory_0_2_1 : label is "0x00040100100000506E4004A100620C01008014A80C6020A401028D0018401883006010028410988C";
attribute INITVAL_20 of ram_memory_0_2_1 : label is "0x010C0192C0100811808C000100424C0D4A01980C018C0090001008D0008801483062200148B10650";
attribute INITVAL_1F of ram_memory_0_2_1 : label is "0x064000A070118CC080A0098CC080A0198C8080940008C198000081306600008000662002010018C0";
attribute INITVAL_1E of ram_memory_0_2_1 : label is "0x188000204C0184800811000C0010440800000630004100200002601020000000C000400084306011";
attribute INITVAL_1D of ram_memory_0_2_1 : label is "0x00240046100000009844080400660004001044200540818084000440003104002060000800C18080";
attribute INITVAL_1C of ram_memory_0_2_1 : label is "0x0804008431000220202000600004210040C1800008002066030202000844180D010045018C010A48";
attribute INITVAL_1B of ram_memory_0_2_1 : label is "0x00845008D00884411008108000800C01048008030602305CAA15CA80440200602060110A20804611";
attribute INITVAL_1A of ram_memory_0_2_1 : label is "0x02013044030200005EA8022300280011800010400984818051086330020100412020230422304001";
attribute INITVAL_19 of ram_memory_0_2_1 : label is "0x0040002800066210623306412000020400004401030230420104011018C401044188081000019804";
attribute INITVAL_18 of ram_memory_0_2_1 : label is "0x01208198C0180030662206231060130620306631060130062303E220600005A20046020062100403";
attribute INITVAL_17 of ram_memory_0_2_1 : label is "0x044300548306020026130402304400044000421300601010C810880018000060100001018C010880";
attribute INITVAL_16 of ram_memory_0_2_1 : label is "0x0220818000080410602204020018881100A008C0000CC000041000C0801408033060330663002421";
attribute INITVAL_15 of ram_memory_0_2_1 : label is "0x0601104212060020021006620006130063200413042200060304011000110063100410006021F60C";
attribute INITVAL_14 of ram_memory_0_2_1 : label is "0x18800182320623004000040200400C118040809011880180C0088400C80304030062100303304010";
attribute INITVAL_13 of ram_memory_0_2_1 : label is "0x074081880E1023106220060300540C18808080800804C09048090881884002A0C1884C0884C01004";
attribute INITVAL_12 of ram_memory_0_2_1 : label is "0x00A0818840002400620206020046030203300030020041808C018801000C1904C008041808411884";
attribute INITVAL_11 of ram_memory_0_2_1 : label is "0x010C4010081088419008100CC01844110801988C180041108000008080801A010046330461004430";
attribute INITVAL_10 of ram_memory_0_2_1 : label is "0x04001000230641006800006020040000000198080900400230066110022007E0019808010401C08C";
attribute INITVAL_0F of ram_memory_0_2_1 : label is "0x19080000000204C0888010006000CC00080104310042300400000130042005803046030040100A40";
attribute INITVAL_0E of ram_memory_0_2_1 : label is "0x0988C110801080010040000330462102220040101184010011000300222102413026000002300612";
attribute INITVAL_0D of ram_memory_0_2_1 : label is "0x0641004410022000800019040100010820019A48000420641202001008C000010000C81908008802";
attribute INITVAL_0C of ram_memory_0_2_1 : label is "0x06030044001823004003004C0060320003005013024100041304423040100600C11000018C00100B";
attribute INITVAL_0B of ram_memory_0_2_1 : label is "0x010CB1900B008C80100B000C4010040003305E2004000118801008000231060021003206410000A0";
attribute INITVAL_0A of ram_memory_0_2_1 : label is "0x0988C018401804000808008C4080810623202431002000643104211042020602004200188C801033";
attribute INITVAL_09 of ram_memory_0_2_1 : label is "0x024000008C1180000020118C01880C018800000809884018041008000403064F2002330221302013";
attribute INITVAL_08 of ram_memory_0_2_1 : label is "0x042100063102603044310421104210040100620001042066330260000044006130201302000018C4";
attribute INITVAL_07 of ram_memory_0_2_1 : label is "0x18004080400260306012000010060C180CC008C00000401A041F88C01080000C00601000401000CC";
attribute INITVAL_06 of ram_memory_0_2_1 : label is "0x10008026230202302600080000188C00200018C31900400431020200980000A30018440084C06633";
attribute INITVAL_05 of ram_memory_0_2_1 : label is "0x062010208C1180800A30088401F4000880E0180400A1000401004A00804015C80002000303002003";
attribute INITVAL_04 of ram_memory_0_2_1 : label is "0x0180401CC20020008003040000603B0D0060603C06630072A00908204408132980802215CB908832";
attribute INITVAL_03 of ram_memory_0_2_1 : label is "0x056EF12808114BA1C800010F81008515E0C112A502022054450108A12804112100043A1E0C81608F";
attribute INITVAL_02 of ram_memory_0_2_1 : label is "0x0188715242044780A0480F6B91CAC0042651C20C10AE912EB4044110C00411AA0004160C00207668";
attribute INITVAL_01 of ram_memory_0_2_1 : label is "0x0441E110790202A0281000408154AE01880026EA15CC10408A1D8800F4231C43D1DEA01901E1DC7B";
attribute INITVAL_00 of ram_memory_0_2_1 : label is "0x1C4820448201C280061C042021840100023064C200022184010180A0102402290000540000510E92";
attribute CSDECODE_B of ram_memory_0_2_1 : label is "0b111";
attribute CSDECODE_A of ram_memory_0_2_1 : label is "0b000";
attribute WRITEMODE_B of ram_memory_0_2_1 : label is "NORMAL";
attribute WRITEMODE_A of ram_memory_0_2_1 : label is "NORMAL";
attribute GSR of ram_memory_0_2_1 : label is "DISABLED";
attribute RESETMODE of ram_memory_0_2_1 : label is "SYNC";
attribute REGMODE_B of ram_memory_0_2_1 : label is "NOREG";
attribute REGMODE_A of ram_memory_0_2_1 : label is "NOREG";
attribute DATA_WIDTH_B of ram_memory_0_2_1 : label is "2";
attribute DATA_WIDTH_A of ram_memory_0_2_1 : label is "2";
attribute MEM_LPC_FILE of ram_memory_0_3_0 : label is "ram_memory.lpc";
attribute MEM_INIT_FILE of ram_memory_0_3_0 : label is "ep202.mem";
attribute INITVAL_3F of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3E of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3D of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3C of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3B of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_3A of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_39 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_38 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_37 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_36 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_35 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_34 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_33 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_32 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_31 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_30 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2F of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2E of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2D of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2C of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2B of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_2A of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_29 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_28 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_27 of ram_memory_0_3_0 : label is "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000";
attribute INITVAL_26 of ram_memory_0_3_0 : label is "0x000000000000000000000000000000000000000000000000000000000000000000000000000018C0";
attribute INITVAL_25 of ram_memory_0_3_0 : label is "0x118CC1804C0804B0AA0C100B50A0230601000243064D40462206220024230602305A55008C809844";
attribute INITVAL_24 of ram_memory_0_3_0 : label is "0x0108C18044198C419008190C016A4006A550A033046010423305A401980401888018801808001880";
attribute INITVAL_23 of ram_memory_0_3_0 : label is "0x11655004310A031040120022002401042110262D0023002022004320443002420026310001302001";
attribute INITVAL_22 of ram_memory_0_3_0 : label is "0x0020105A54026120600100413022000262C0A00C0804016A550A00C0804C10880116550A0CC000CC";
attribute INITVAL_21 of ram_memory_0_3_0 : label is "0x000C8096550AA430643202022180CC088C416254046020222D010C81988B06430040321AA5009884";
attribute INITVAL_20 of ram_memory_0_3_0 : label is "0x190C41984C19040098C416A55080041AA4019808010801900C0108C0980816803064220625500603";
attribute INITVAL_1F of ram_memory_0_3_0 : label is "0x0242D0AA401988C116081988C1160811884116150B08C100B50AC23024121AA6206431044D5108C0";
attribute INITVAL_1E of ram_memory_0_3_0 : label is "0x110B50B04C0108016A55108C40088C116550C03100223044D600613044D50B00C0988B0AA6306222";
attribute INITVAL_1D of ram_memory_0_3_0 : label is "0x05A56066221AA581988411656046030041200012180081884816A550C43104202004D50AA441880B";
attribute INITVAL_1C of ram_memory_0_3_0 : label is "0x0AA550C23000632044C4026000642205800188CB0AA4006231044C0000CC0184809655018C011084";
attribute INITVAL_1B of ram_memory_0_3_0 : label is "0x16A55018CC118CC118C0110B50A0CC0108416C230262306A510AA500261100433024D50AA5002623";
attribute INITVAL_1A of ram_memory_0_3_0 : label is "0x02610024210643218A55020321AA5001808008801184411655086310640306032006010202000600";
attribute INITVAL_19 of ram_memory_0_3_0 : label is "0x060321AA5404622044310640306001066000242D0A82306031044D5008C400840188041180C100C4";
attribute INITVAL_18 of ram_memory_0_3_0 : label is "0x16A041988B02A430642204422000320423304422002320022007E120060106810040320042100401";
attribute INITVAL_17 of ram_memory_0_3_0 : label is "0x004221AA4206013046200663100013000130661305855010C018048162540462005A55008C41100B";
attribute INITVAL_16 of ram_memory_0_3_0 : label is "0x0AA04180801166106000024C809880008B0100C41100401008000880965508431006310001302622";
attribute INITVAL_15 of ram_memory_0_3_0 : label is "0x00031046230663306400022030021206032002200443306031006010662000230064130022D0AA04";
attribute INITVAL_14 of ram_memory_0_3_0 : label is "0x1880B002320203102600020121804C1080C1161001888098001904B0880304413000121A03304432";
attribute INITVAL_13 of ram_memory_0_3_0 : label is "0x1A04C198B402631042020020218A48188040804B0A08C1108C080081184B0AA04190841184C008B5";
attribute INITVAL_12 of ram_memory_0_3_0 : label is "0x0AA041880B0AA4106401000130402C0A803026021AA08180400008008000000C8080C8108C818004";
attribute INITVAL_11 of ram_memory_0_3_0 : label is "0x008801880400884180CC00884090480080C190C8018C80080C118040804B02A54026200463002410";
attribute INITVAL_10 of ram_memory_0_3_0 : label is "0x02433060110021218A54026010022D0AA5001804008B50803006032042221AA00188C80108B000CC";
attribute INITVAL_0F of ram_memory_0_3_0 : label is "0x10040198B50A0CC198CC118B4018C81004B00430004230042D0A8230042218023024120022D0AA50";
attribute INITVAL_0E of ram_memory_0_3_0 : label is "0x09800080C0098C00965508230064300022218A5001800096550803000430000320242D0A83300623";
attribute INITVAL_0D of ram_memory_0_3_0 : label is "0x00601004100622D0AA0C198CC180B50AA501188416A4206011044D5010C019655010C01188B0AA41";
attribute INITVAL_0C of ram_memory_0_3_0 : label is "0x060200442D002300403205801060200062218003022210600102431024D50800C008B5018C0008B0";
attribute INITVAL_0B of ram_memory_0_3_0 : label is "0x018C3188B0018C0008B0018C4008B50A82301E1218A501180009615084320442C00432002121AA00";
attribute INITVAL_0A of ram_memory_0_3_0 : label is "0x09844180081104C000B1008C8016000643004000062130000004210042010401218A001908C16033";
attribute INITVAL_09 of ram_memory_0_3_0 : label is "0x0462D0A0CC110CC16A4011884118C008004198C808044090C41188B0A840064F1004320422004430";
attribute INITVAL_08 of ram_memory_0_3_0 : label is "0x064120660002410040000421004210022230402D0A24006401022321AA540062200632004D5018C8";
attribute INITVAL_07 of ram_memory_0_3_0 : label is "0x100CC01654066310662306600058081984C1908C19800162081F84C0088C01602062230642D0A04C";
attribute INITVAL_06 of ram_memory_0_3_0 : label is "0x008B002600000100202D0AA50098C016A55000C3188B508032004C0018CC16A400188816A5006620";
attribute INITVAL_05 of ram_memory_0_3_0 : label is "0x0422D0A0CC118C816A401804B0AA0C008B50100416A550840105A501004B0AA020022D0A010024D4";
attribute INITVAL_04 of ram_memory_0_3_0 : label is "0x0080416A510022D0A81300010004D50AA13004D4006021AA54006C001E00078F10800F0CA9F0A830";
attribute INITVAL_03 of ram_memory_0_3_0 : label is "0x1EC591EA0C07A960FA50186F00600F0600807EFD0A8201FE550103F1AA0807A54040FC0A04318015";
attribute INITVAL_02 of ram_memory_0_3_0 : label is "0x008330625101E310A0430621019A1101E4418A00078C102605000F00EA0006EC4000F40E8001A2F0";
attribute INITVAL_01 of ram_memory_0_3_0 : label is "0x060CC022310A83F0AA54060D10AA550903007C750AA1201A15000300602E084E418A54086CC08831";
attribute INITVAL_00 of ram_memory_0_3_0 : label is "0x0AA5101E4100A550260C022301822D0A803040C1026201822D0A00D0083C010C000088000001E608";
attribute CSDECODE_B of ram_memory_0_3_0 : label is "0b111";
attribute CSDECODE_A of ram_memory_0_3_0 : label is "0b000";
attribute WRITEMODE_B of ram_memory_0_3_0 : label is "NORMAL";
attribute WRITEMODE_A of ram_memory_0_3_0 : label is "NORMAL";
attribute GSR of ram_memory_0_3_0 : label is "DISABLED";
attribute RESETMODE of ram_memory_0_3_0 : label is "SYNC";
attribute REGMODE_B of ram_memory_0_3_0 : label is "NOREG";
attribute REGMODE_A of ram_memory_0_3_0 : label is "NOREG";
attribute DATA_WIDTH_B of ram_memory_0_3_0 : label is "2";
attribute DATA_WIDTH_A of ram_memory_0_3_0 : label is "2";
attribute NGD_DRC_MASK : integer;
attribute NGD_DRC_MASK of Structure : architecture is 1;
begin
-- component instantiation statements
ram_memory_0_0_3: DP16KB
-- synopsys translate_off
generic map (INITVAL_3F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_39=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_38=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_37=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_36=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_35=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_34=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_33=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_32=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_31=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_30=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_29=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_28=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_27=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_26=> "0x000000000000000000000000000000000000000000000000000000000000000000000000000058A0",
INITVAL_25=> "0x1D49A080B01088501E221D8531DA8109CA000077082521625804A7908E8214CA402E2F0D05619261",
INITVAL_24=> "0x13CC914A241522413A9D1222C0AAF902A5B1627108A321142A0286D1080B10A52092E4146BA192DA",
INITVAL_23=> "0x10A5612C101827B0EEB70F67716E7B0EA550A8171481612E550EC2404C2E0A862052951C0240AC02",
INITVAL_22=> "0x04A69028500A2420D0320CE420A88004A1709A46080900A8960C2460D888090CB08A451708513419",
INITVAL_21=> "0x1340010A4502A5102221044D10C8060D8480A01D06268044150904D10CC51A21614C81092B408C90",
INITVAL_20=> "0x100640804908098094800A8471809012A8510A91152DA03AAB1C2F41929C0B03D02A480A44606E02",
INITVAL_1F=> "0x00E150AC7F08CDE18AAB08CDA18A8B08CDE18A8B136050785409AE11C8C10B84F028BC0A2491E859",
INITVAL_1E=> "0x04059006C51243C0A246170640140A18A140B81900482162661A292162651AE86094C5024580322B",
INITVAL_1D=> "0x02818122810CE6600C1618ABB1626A1F0F8184210C0E80C8AC0A29107615092670E25103EE80CCC5",
INITVAL_1C=> "0x0A21F1B0170D4671024E1626614878028680DC8506059028201A2761D899032B010A150385904E08",
INITVAL_1B=> "0x0A2D8128550A8AA038991E85112205142C80BA4108401008B1022F10EA020CC2A002460489208257",
INITVAL_1A=> "0x0E813048840E8210C4E60B0610969510AAC0125A0980A10A650A01E0AA42028230C433054770848E",
INITVAL_19=> "0x0BE51082F60027508A12026A0050020048104E14098310CE510E2441984401069108081941503A54",
INITVAL_18=> "0x0A4880FC851AA9E028E70EA450E4270E42108E450E42D0D44205E24044860BE260E4270C8450CE6A",
INITVAL_17=> "0x0CE410928F0202C042571C4AE0DE650DE651C45602E570E07D098A00B2591E2CA02C7C0F87D04605",
INITVAL_16=> "0x05E380B4DA08A1D03CC10424718A30090521706E1CAF915AA71B4E908A790361E0EA1E0EEE50AC75",
INITVAL_15=> "0x0F8250F02614468058A615C650D4540AE17004571446805C6E0CAA5144CA0D46C04E550D4151C868",
INITVAL_14=> "0x0DA851B214086181048204C910CC450203B18A9A00A1B12AC317A4514E8108CE50E6510D47109071",
INITVAL_13=> "0x094D80B85206E1508AF80EC71098D40888808885172C50A8980DA9D192450881C0A891192700105D",
INITVAL_12=> "0x1A69808C850E8D4038120FC620E217130710C4110AEC00B45F13AC01769D1B89312895030C913ED1",
INITVAL_11=> "0x14A1C11AA512AD5128AB1B239122700929512290108B001296028090B4451CC5B002E70ECD204EE3",
INITVAL_10=> "0x0442D0A22E004510E2D202269044140AE4C10AA401051066101CEEF1AA710C6C40F26D14A4517647",
INITVAL_0F=> "0x088841305B0E6C7096491E05F170770B4451B8170D2760D214060C10D2B10E4D118814004141B01F",
INITVAL_0E=> "0x10EC017A4C16A4410A1D03A17128671CA7109E4710E4010A760B81E1C4671D8240A814030B11D426",
INITVAL_0D=> "0x0EC760CE5E04A1516E64084CA130540E84210E080B23B03E02102441D85A10A6405059032C504EDA",
INITVAL_0C=> "0x02C4608E141541608C5402AA802C4F0CA410BC9106458046A304E53042641CCC401052138581105E",
INITVAL_0B=> "0x1387F190551387C0905D120501105C03A511FC210A07510EC810AC11AC1508E1714A100EC5109AE5",
INITVAL_0A=> "0x18E5413AF506A5A070591305518A9702A9605E7A0AA620FE7A0EA5A0EA32080210CAD00AA080BA11",
INITVAL_09=> "0x0A4141B844022940A67010A390089C0BED80929D0BE57118951B2C506E5202EF21CA140A0270A027",
INITVAL_08=> "0x0CA5204C7A0A8670FE7A0EA5A0EA5305C021DC141BA6003C7E0BC510C81E06254044D41C2651E055",
INITVAL_07=> "0x008B710A171E26E02C5C04C8E0287C0B68512A3C134380A2B80F884016CA00A5D03CE20CE1713E07",
INITVAL_06=> "0x1F0551A2F71422E0BC1503A8F18AB80A876170631905317A151427708A540A22300A540A68912247",
INITVAL_05=> "0x08A141DC451C89C0A232194C50682C05853150AC0A04B1F20B0280E114C5032D805616098B016266",
INITVAL_04=> "0x1D0AC0A238016151B0811ECB60E2670E48C16246122710CCC611E4507A0604A5D0F03D1967516673",
INITVAL_03=> "0x1B8B70B6941EE2D1A89D196F4160560A0901EA560D8731BA1F038F5088D01E8E00A6D507ACF0A043",
INITVAL_02=> "0x1B0FE128B507AE805A8F1D6EF14CA707ABB144901EEAE1DCAA0E6D2126901FA5E086DB122431DE55",
INITVAL_01=> "0x006FA1DCE80880508E47066EE0269A110FF05053134F107CE10E8FF1D61B166BB1406011E7A0E6E8",
INITVAL_00=> "0x1A62007AFB1C2310027D040261A4140A80108CF2004761C4150F8071DE94064FC002F01000207CB1",
CSDECODE_B=> "111", CSDECODE_A=> "000", WRITEMODE_B=> "NORMAL",
WRITEMODE_A=> "NORMAL", GSR=> "DISABLED", RESETMODE=> "SYNC",
REGMODE_B=> "NOREG", REGMODE_A=> "NOREG", DATA_WIDTH_B=> 2,
DATA_WIDTH_A=> 2)
-- synopsys translate_on
port map (DIA0=>scuba_vlo, DIA1=>Data1, DIA2=>scuba_vlo,
DIA3=>scuba_vlo, DIA4=>scuba_vlo, DIA5=>scuba_vlo,
DIA6=>scuba_vlo, DIA7=>scuba_vlo, DIA8=>scuba_vlo,
DIA9=>scuba_vlo, DIA10=>scuba_vlo, DIA11=>Data0,
DIA12=>scuba_vlo, DIA13=>scuba_vlo, DIA14=>scuba_vlo,
DIA15=>scuba_vlo, DIA16=>scuba_vlo, DIA17=>scuba_vlo,
ADA0=>scuba_vlo, ADA1=>Address0, ADA2=>Address1,
ADA3=>Address2, ADA4=>Address3, ADA5=>Address4,
ADA6=>Address5, ADA7=>Address6, ADA8=>Address7,
ADA9=>Address8, ADA10=>Address9, ADA11=>Address10,
ADA12=>Address11, ADA13=>Address12, CEA=>ClockEn,
CLKA=>Clock, WEA=>WE, CSA0=>scuba_vlo, CSA1=>scuba_vlo,
CSA2=>scuba_vlo, RSTA=>Reset, DIB0=>scuba_vlo,
DIB1=>scuba_vlo, DIB2=>scuba_vlo, DIB3=>scuba_vlo,
DIB4=>scuba_vlo, DIB5=>scuba_vlo, DIB6=>scuba_vlo,
DIB7=>scuba_vlo, DIB8=>scuba_vlo, DIB9=>scuba_vlo,
DIB10=>scuba_vlo, DIB11=>scuba_vlo, DIB12=>scuba_vlo,
DIB13=>scuba_vlo, DIB14=>scuba_vlo, DIB15=>scuba_vlo,
DIB16=>scuba_vlo, DIB17=>scuba_vlo, ADB0=>scuba_vlo,
ADB1=>scuba_vlo, ADB2=>scuba_vlo, ADB3=>scuba_vlo,
ADB4=>scuba_vlo, ADB5=>scuba_vlo, ADB6=>scuba_vlo,
ADB7=>scuba_vlo, ADB8=>scuba_vlo, ADB9=>scuba_vlo,
ADB10=>scuba_vlo, ADB11=>scuba_vlo, ADB12=>scuba_vlo,
ADB13=>scuba_vlo, CEB=>scuba_vhi, CLKB=>scuba_vlo,
WEB=>scuba_vlo, CSB0=>scuba_vlo, CSB1=>scuba_vlo,
CSB2=>scuba_vlo, RSTB=>scuba_vlo, DOA0=>Q0, DOA1=>Q1,
DOA2=>open, DOA3=>open, DOA4=>open, DOA5=>open, DOA6=>open,
DOA7=>open, DOA8=>open, DOA9=>open, DOA10=>open, DOA11=>open,
DOA12=>open, DOA13=>open, DOA14=>open, DOA15=>open,
DOA16=>open, DOA17=>open, DOB0=>open, DOB1=>open, DOB2=>open,
DOB3=>open, DOB4=>open, DOB5=>open, DOB6=>open, DOB7=>open,
DOB8=>open, DOB9=>open, DOB10=>open, DOB11=>open,
DOB12=>open, DOB13=>open, DOB14=>open, DOB15=>open,
DOB16=>open, DOB17=>open);
ram_memory_0_1_2: DP16KB
-- synopsys translate_off
generic map (INITVAL_3F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_39=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_38=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_37=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_36=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_35=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_34=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_33=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_32=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_31=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_30=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_29=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_28=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_27=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_26=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000001074",
INITVAL_25=> "0x1A0BD108F0190C30F8441083718A20106101106B100E8060330107310210026380184D0800C18424",
INITVAL_24=> "0x0880501C0C008CC008C503C3806A0201ACF1C4B0102330C00101AB00800C180C400AC80144C1804C",
INITVAL_23=> "0x186731A6001BAB9020910121012209022110300C1800004033000120260211080064220603802A03",
INITVAL_22=> "0x14232018D5020310940302221030A10600E1A0C3180C406E08030C3188C4018CE086510088001884",
INITVAL_21=> "0x19880186520BEA100010066901C0031E0CC07EC1060000660F0180F0860310400066201A274086F0",
INITVAL_20=> "0x0403C01080080CC1807006E8F030B00B8C60000419AC010808130780804407E4C006860025403610",
INITVAL_1F=> "0x1820D09677006EF00633006E300613186F70061300EC00E03714AE01C2F01A65D002FF060D406800",
INITVAL_1E=> "0x0B83D12EC000AF0068440E83C01AC7006460380F00670180D81E0F1180F808E83186031CE5E01E1C",
INITVAL_1D=> "0x01A9D1C0701F247102C7006341C00204C571203019A34078F0078161BC010FE31000DE0787407E83",
INITVAL_1C=> "0x1BC3C15802004410E0F01C00004E1701E38028830FE1E0180C120D31F87B0E870186640E8011860C",
INITVAL_1B=> "0x06A100E8001F850078040C83C0AE400060C070E018080056F11C6C31A20307C01180D400AE618039",
INITVAL_1A=> "0x1B0030706813800188C119AF01A60718000018C00680D1868503802006C11981E1E0530681B1A023",
INITVAL_19=> "0x004001A2011E0130260F01C4C004231A0230620C032D008400020C107000118110008F0008008004",
INITVAL_18=> "0x07638048C31B8D8002910E61301E170FA0002E1301C1B0627E03E371802103E3303E010627106201",
INITVAL_17=> "0x022101BC590003A020301201202410024101221401E700C008098D807ACD1608401E6D0D0151BC43",
INITVAL_16=> "0x09A680000C006CA00692060E2084241183B0581405008180C01181C0864003002000020002002813",
INITVAL_15=> "0x01411032141603B00643024100621100001006301424B00432020411603406249002100020D00064",
INITVAL_14=> "0x048C3192081160916022066201E40204499186D2084201002913843068B01102001610198A010C90",
INITVAL_13=> "0x1E62C0483C0900102226002001BA2C0008C018C3004801D050020460084309268040620084401831",
INITVAL_12=> "0x00068002030801B00633166900200F0BAA0100001CC280008018040198C0050441D00C08C8500094",
INITVAL_11=> "0x1906C048C80884505804108480884C1984100A061500C098411000C09883188DD100100221206221",
INITVAL_10=> "0x0760100432006101EC65140020460F0705608008018391140A08067042101882401018198C3182C1",
INITVAL_0F=> "0x018E00183D10A4118A800B030028111188300E02006140660D1F27000660198400A2410060D00295",
INITVAL_0E=> "0x180801904418808186660A8000C242062101B00518200186400AE030E24206A110220F1CA4006814",
INITVAL_0D=> "0x00821022140220D0F858012C00983508C491060C06445004030E0D00280C106460A0040A0430EE17",
INITVAL_0C=> "0x006130E20C00C000E001018050001206010190700663400A4306213060C206AC00183C038140183C",
INITVAL_0B=> "0x0380B1983C038080183803814018331A26005E301FE4508080186BD02A0302A0F10806008101BEE5",
INITVAL_0A=> "0x1801C002480904C1183B0200D08684006250240200250004020221202233020301DA140185407850",
INITVAL_09=> "0x06A0D1E201108C006EF50004C0B80100085180C4080041B804098430FED6002F30660106A1006C10",
INITVAL_08=> "0x086150020202210024020221202213066500260D1FE5400202024001F4650A0310C011060FB0000C",
INITVAL_07=> "0x0A0041868C00032006320062301E0001880198480188C07A08078C001880106C1006100620C00080",
INITVAL_06=> "0x1183C04020040320240D08AD40820806A170880B1983718403040E01000006244100CC0661102010",
INITVAL_05=> "0x0220D180000800406274000030864400030008C006C5F0243001AE01100318A530200C12231000FB",
INITVAL_04=> "0x00000066410000D0023004603000C40EA0C020C400000182D4080400020014C0B082010F6E007000",
INITVAL_03=> "0x02AB60060000A6D102C0100F00000A1180C00A400BA30020040800500A08000C506020000C00C000",
INITVAL_02=> "0x0000F00001002F8000001E08B1C0C00024F1C00000EC107EB0000111800800000060141800000000",
INITVAL_01=> "0x0603C026F914A080A86506013050C009000032C8180D0002320C8001E0311861F1CC741003C044F9",
INITVAL_00=> "0x05E520024B04CF50602C062011860D16A30022C3040111860E0DA090589406004006301000011E30",
CSDECODE_B=> "111", CSDECODE_A=> "000", WRITEMODE_B=> "NORMAL",
WRITEMODE_A=> "NORMAL", GSR=> "DISABLED", RESETMODE=> "SYNC",
REGMODE_B=> "NOREG", REGMODE_A=> "NOREG", DATA_WIDTH_B=> 2,
DATA_WIDTH_A=> 2)
-- synopsys translate_on
port map (DIA0=>scuba_vlo, DIA1=>Data3, DIA2=>scuba_vlo,
DIA3=>scuba_vlo, DIA4=>scuba_vlo, DIA5=>scuba_vlo,
DIA6=>scuba_vlo, DIA7=>scuba_vlo, DIA8=>scuba_vlo,
DIA9=>scuba_vlo, DIA10=>scuba_vlo, DIA11=>Data2,
DIA12=>scuba_vlo, DIA13=>scuba_vlo, DIA14=>scuba_vlo,
DIA15=>scuba_vlo, DIA16=>scuba_vlo, DIA17=>scuba_vlo,
ADA0=>scuba_vlo, ADA1=>Address0, ADA2=>Address1,
ADA3=>Address2, ADA4=>Address3, ADA5=>Address4,
ADA6=>Address5, ADA7=>Address6, ADA8=>Address7,
ADA9=>Address8, ADA10=>Address9, ADA11=>Address10,
ADA12=>Address11, ADA13=>Address12, CEA=>ClockEn,
CLKA=>Clock, WEA=>WE, CSA0=>scuba_vlo, CSA1=>scuba_vlo,
CSA2=>scuba_vlo, RSTA=>Reset, DIB0=>scuba_vlo,
DIB1=>scuba_vlo, DIB2=>scuba_vlo, DIB3=>scuba_vlo,
DIB4=>scuba_vlo, DIB5=>scuba_vlo, DIB6=>scuba_vlo,
DIB7=>scuba_vlo, DIB8=>scuba_vlo, DIB9=>scuba_vlo,
DIB10=>scuba_vlo, DIB11=>scuba_vlo, DIB12=>scuba_vlo,
DIB13=>scuba_vlo, DIB14=>scuba_vlo, DIB15=>scuba_vlo,
DIB16=>scuba_vlo, DIB17=>scuba_vlo, ADB0=>scuba_vlo,
ADB1=>scuba_vlo, ADB2=>scuba_vlo, ADB3=>scuba_vlo,
ADB4=>scuba_vlo, ADB5=>scuba_vlo, ADB6=>scuba_vlo,
ADB7=>scuba_vlo, ADB8=>scuba_vlo, ADB9=>scuba_vlo,
ADB10=>scuba_vlo, ADB11=>scuba_vlo, ADB12=>scuba_vlo,
ADB13=>scuba_vlo, CEB=>scuba_vhi, CLKB=>scuba_vlo,
WEB=>scuba_vlo, CSB0=>scuba_vlo, CSB1=>scuba_vlo,
CSB2=>scuba_vlo, RSTB=>scuba_vlo, DOA0=>Q2, DOA1=>Q3,
DOA2=>open, DOA3=>open, DOA4=>open, DOA5=>open, DOA6=>open,
DOA7=>open, DOA8=>open, DOA9=>open, DOA10=>open, DOA11=>open,
DOA12=>open, DOA13=>open, DOA14=>open, DOA15=>open,
DOA16=>open, DOA17=>open, DOB0=>open, DOB1=>open, DOB2=>open,
DOB3=>open, DOB4=>open, DOB5=>open, DOB6=>open, DOB7=>open,
DOB8=>open, DOB9=>open, DOB10=>open, DOB11=>open,
DOB12=>open, DOB13=>open, DOB14=>open, DOB15=>open,
DOB16=>open, DOB17=>open);
ram_memory_0_2_1: DP16KB
-- synopsys translate_off
generic map (INITVAL_3F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_39=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_38=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_37=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_36=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_35=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_34=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_33=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_32=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_31=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_30=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_29=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_28=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_27=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_26=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000003045",
INITVAL_25=> "0x00A4C108981008000015198040107301CFB1FA83000280861500236064700403000211028C508040",
INITVAL_24=> "0x11204130DC012D801008110080004607CA217033044120080200021198080184D008D40008508080",
INITVAL_23=> "0x1800018E3B17831046120622302431042110200110E300461106E1402C0302400046340222002012",
INITVAL_22=> "0x062020021008651044020446102620040021428C00094000010220C0189001214080100828C0004C",
INITVAL_21=> "0x00040100100000506E4004A100620C01008014A80C6020A401028D0018401883006010028410988C",
INITVAL_20=> "0x010C0192C0100811808C000100424C0D4A01980C018C0090001008D0008801483062200148B10650",
INITVAL_1F=> "0x064000A070118CC080A0098CC080A0198C8080940008C198000081306600008000662002010018C0",
INITVAL_1E=> "0x188000204C0184800811000C0010440800000630004100200002601020000000C000400084306011",
INITVAL_1D=> "0x00240046100000009844080400660004001044200540818084000440003104002060000800C18080",
INITVAL_1C=> "0x0804008431000220202000600004210040C1800008002066030202000844180D010045018C010A48",
INITVAL_1B=> "0x00845008D00884411008108000800C01048008030602305CAA15CA80440200602060110A20804611",
INITVAL_1A=> "0x02013044030200005EA8022300280011800010400984818051086330020100412020230422304001",
INITVAL_19=> "0x0040002800066210623306412000020400004401030230420104011018C401044188081000019804",
INITVAL_18=> "0x01208198C0180030662206231060130620306631060130062303E220600005A20046020062100403",
INITVAL_17=> "0x044300548306020026130402304400044000421300601010C810880018000060100001018C010880",
INITVAL_16=> "0x0220818000080410602204020018881100A008C0000CC000041000C0801408033060330663002421",
INITVAL_15=> "0x0601104212060020021006620006130063200413042200060304011000110063100410006021F60C",
INITVAL_14=> "0x18800182320623004000040200400C118040809011880180C0088400C80304030062100303304010",
INITVAL_13=> "0x074081880E1023106220060300540C18808080800804C09048090881884002A0C1884C0884C01004",
INITVAL_12=> "0x00A0818840002400620206020046030203300030020041808C018801000C1904C008041808411884",
INITVAL_11=> "0x010C4010081088419008100CC01844110801988C180041108000008080801A010046330461004430",
INITVAL_10=> "0x04001000230641006800006020040000000198080900400230066110022007E0019808010401C08C",
INITVAL_0F=> "0x19080000000204C0888010006000CC00080104310042300400000130042005803046030040100A40",
INITVAL_0E=> "0x0988C110801080010040000330462102220040101184010011000300222102413026000002300612",
INITVAL_0D=> "0x0641004410022000800019040100010820019A48000420641202001008C000010000C81908008802",
INITVAL_0C=> "0x06030044001823004003004C0060320003005013024100041304423040100600C11000018C00100B",
INITVAL_0B=> "0x010CB1900B008C80100B000C4010040003305E2004000118801008000231060021003206410000A0",
INITVAL_0A=> "0x0988C018401804000808008C4080810623202431002000643104211042020602004200188C801033",
INITVAL_09=> "0x024000008C1180000020118C01880C018800000809884018041008000403064F2002330221302013",
INITVAL_08=> "0x042100063102603044310421104210040100620001042066330260000044006130201302000018C4",
INITVAL_07=> "0x18004080400260306012000010060C180CC008C00000401A041F88C01080000C00601000401000CC",
INITVAL_06=> "0x10008026230202302600080000188C00200018C31900400431020200980000A30018440084C06633",
INITVAL_05=> "0x062010208C1180800A30088401F4000880E0180400A1000401004A00804015C80002000303002003",
INITVAL_04=> "0x0180401CC20020008003040000603B0D0060603C06630072A00908204408132980802215CB908832",
INITVAL_03=> "0x056EF12808114BA1C800010F81008515E0C112A502022054450108A12804112100043A1E0C81608F",
INITVAL_02=> "0x0188715242044780A0480F6B91CAC0042651C20C10AE912EB4044110C00411AA0004160C00207668",
INITVAL_01=> "0x0441E110790202A0281000408154AE01880026EA15CC10408A1D8800F4231C43D1DEA01901E1DC7B",
INITVAL_00=> "0x1C4820448201C280061C042021840100023064C200022184010180A0102402290000540000510E92",
CSDECODE_B=> "111", CSDECODE_A=> "000", WRITEMODE_B=> "NORMAL",
WRITEMODE_A=> "NORMAL", GSR=> "DISABLED", RESETMODE=> "SYNC",
REGMODE_B=> "NOREG", REGMODE_A=> "NOREG", DATA_WIDTH_B=> 2,
DATA_WIDTH_A=> 2)
-- synopsys translate_on
port map (DIA0=>scuba_vlo, DIA1=>Data5, DIA2=>scuba_vlo,
DIA3=>scuba_vlo, DIA4=>scuba_vlo, DIA5=>scuba_vlo,
DIA6=>scuba_vlo, DIA7=>scuba_vlo, DIA8=>scuba_vlo,
DIA9=>scuba_vlo, DIA10=>scuba_vlo, DIA11=>Data4,
DIA12=>scuba_vlo, DIA13=>scuba_vlo, DIA14=>scuba_vlo,
DIA15=>scuba_vlo, DIA16=>scuba_vlo, DIA17=>scuba_vlo,
ADA0=>scuba_vlo, ADA1=>Address0, ADA2=>Address1,
ADA3=>Address2, ADA4=>Address3, ADA5=>Address4,
ADA6=>Address5, ADA7=>Address6, ADA8=>Address7,
ADA9=>Address8, ADA10=>Address9, ADA11=>Address10,
ADA12=>Address11, ADA13=>Address12, CEA=>ClockEn,
CLKA=>Clock, WEA=>WE, CSA0=>scuba_vlo, CSA1=>scuba_vlo,
CSA2=>scuba_vlo, RSTA=>Reset, DIB0=>scuba_vlo,
DIB1=>scuba_vlo, DIB2=>scuba_vlo, DIB3=>scuba_vlo,
DIB4=>scuba_vlo, DIB5=>scuba_vlo, DIB6=>scuba_vlo,
DIB7=>scuba_vlo, DIB8=>scuba_vlo, DIB9=>scuba_vlo,
DIB10=>scuba_vlo, DIB11=>scuba_vlo, DIB12=>scuba_vlo,
DIB13=>scuba_vlo, DIB14=>scuba_vlo, DIB15=>scuba_vlo,
DIB16=>scuba_vlo, DIB17=>scuba_vlo, ADB0=>scuba_vlo,
ADB1=>scuba_vlo, ADB2=>scuba_vlo, ADB3=>scuba_vlo,
ADB4=>scuba_vlo, ADB5=>scuba_vlo, ADB6=>scuba_vlo,
ADB7=>scuba_vlo, ADB8=>scuba_vlo, ADB9=>scuba_vlo,
ADB10=>scuba_vlo, ADB11=>scuba_vlo, ADB12=>scuba_vlo,
ADB13=>scuba_vlo, CEB=>scuba_vhi, CLKB=>scuba_vlo,
WEB=>scuba_vlo, CSB0=>scuba_vlo, CSB1=>scuba_vlo,
CSB2=>scuba_vlo, RSTB=>scuba_vlo, DOA0=>Q4, DOA1=>Q5,
DOA2=>open, DOA3=>open, DOA4=>open, DOA5=>open, DOA6=>open,
DOA7=>open, DOA8=>open, DOA9=>open, DOA10=>open, DOA11=>open,
DOA12=>open, DOA13=>open, DOA14=>open, DOA15=>open,
DOA16=>open, DOA17=>open, DOB0=>open, DOB1=>open, DOB2=>open,
DOB3=>open, DOB4=>open, DOB5=>open, DOB6=>open, DOB7=>open,
DOB8=>open, DOB9=>open, DOB10=>open, DOB11=>open,
DOB12=>open, DOB13=>open, DOB14=>open, DOB15=>open,
DOB16=>open, DOB17=>open);
scuba_vhi_inst: VHI
port map (Z=>scuba_vhi);
scuba_vlo_inst: VLO
port map (Z=>scuba_vlo);
ram_memory_0_3_0: DP16KB
-- synopsys translate_off
generic map (INITVAL_3F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_3A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_39=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_38=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_37=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_36=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_35=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_34=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_33=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_32=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_31=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_30=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2F=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2E=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2D=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2C=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2B=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_2A=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_29=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_28=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_27=> "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000",
INITVAL_26=> "0x000000000000000000000000000000000000000000000000000000000000000000000000000018C0",
INITVAL_25=> "0x118CC1804C0804B0AA0C100B50A0230601000243064D40462206220024230602305A55008C809844",
INITVAL_24=> "0x0108C18044198C419008190C016A4006A550A033046010423305A401980401888018801808001880",
INITVAL_23=> "0x11655004310A031040120022002401042110262D0023002022004320443002420026310001302001",
INITVAL_22=> "0x0020105A54026120600100413022000262C0A00C0804016A550A00C0804C10880116550A0CC000CC",
INITVAL_21=> "0x000C8096550AA430643202022180CC088C416254046020222D010C81988B06430040321AA5009884",
INITVAL_20=> "0x190C41984C19040098C416A55080041AA4019808010801900C0108C0980816803064220625500603",
INITVAL_1F=> "0x0242D0AA401988C116081988C1160811884116150B08C100B50AC23024121AA6206431044D5108C0",
INITVAL_1E=> "0x110B50B04C0108016A55108C40088C116550C03100223044D600613044D50B00C0988B0AA6306222",
INITVAL_1D=> "0x05A56066221AA581988411656046030041200012180081884816A550C43104202004D50AA441880B",
INITVAL_1C=> "0x0AA550C23000632044C4026000642205800188CB0AA4006231044C0000CC0184809655018C011084",
INITVAL_1B=> "0x16A55018CC118CC118C0110B50A0CC0108416C230262306A510AA500261100433024D50AA5002623",
INITVAL_1A=> "0x02610024210643218A55020321AA5001808008801184411655086310640306032006010202000600",
INITVAL_19=> "0x060321AA5404622044310640306001066000242D0A82306031044D5008C400840188041180C100C4",
INITVAL_18=> "0x16A041988B02A430642204422000320423304422002320022007E120060106810040320042100401",
INITVAL_17=> "0x004221AA4206013046200663100013000130661305855010C018048162540462005A55008C41100B",
INITVAL_16=> "0x0AA04180801166106000024C809880008B0100C41100401008000880965508431006310001302622",
INITVAL_15=> "0x00031046230663306400022030021206032002200443306031006010662000230064130022D0AA04",
INITVAL_14=> "0x1880B002320203102600020121804C1080C1161001888098001904B0880304413000121A03304432",
INITVAL_13=> "0x1A04C198B402631042020020218A48188040804B0A08C1108C080081184B0AA04190841184C008B5",
INITVAL_12=> "0x0AA041880B0AA4106401000130402C0A803026021AA08180400008008000000C8080C8108C818004",
INITVAL_11=> "0x008801880400884180CC00884090480080C190C8018C80080C118040804B02A54026200463002410",
INITVAL_10=> "0x02433060110021218A54026010022D0AA5001804008B50803006032042221AA00188C80108B000CC",
INITVAL_0F=> "0x10040198B50A0CC198CC118B4018C81004B00430004230042D0A8230042218023024120022D0AA50",
INITVAL_0E=> "0x09800080C0098C00965508230064300022218A5001800096550803000430000320242D0A83300623",
INITVAL_0D=> "0x00601004100622D0AA0C198CC180B50AA501188416A4206011044D5010C019655010C01188B0AA41",
INITVAL_0C=> "0x060200442D002300403205801060200062218003022210600102431024D50800C008B5018C0008B0",
INITVAL_0B=> "0x018C3188B0018C0008B0018C4008B50A82301E1218A501180009615084320442C00432002121AA00",
INITVAL_0A=> "0x09844180081104C000B1008C8016000643004000062130000004210042010401218A001908C16033",
INITVAL_09=> "0x0462D0A0CC110CC16A4011884118C008004198C808044090C41188B0A840064F1004320422004430",
INITVAL_08=> "0x064120660002410040000421004210022230402D0A24006401022321AA540062200632004D5018C8",
INITVAL_07=> "0x100CC01654066310662306600058081984C1908C19800162081F84C0088C01602062230642D0A04C",
INITVAL_06=> "0x008B002600000100202D0AA50098C016A55000C3188B508032004C0018CC16A400188816A5006620",
INITVAL_05=> "0x0422D0A0CC118C816A401804B0AA0C008B50100416A550840105A501004B0AA020022D0A010024D4",
INITVAL_04=> "0x0080416A510022D0A81300010004D50AA13004D4006021AA54006C001E00078F10800F0CA9F0A830",
INITVAL_03=> "0x1EC591EA0C07A960FA50186F00600F0600807EFD0A8201FE550103F1AA0807A54040FC0A04318015",
INITVAL_02=> "0x008330625101E310A0430621019A1101E4418A00078C102605000F00EA0006EC4000F40E8001A2F0",
INITVAL_01=> "0x060CC022310A83F0AA54060D10AA550903007C750AA1201A15000300602E084E418A54086CC08831",
INITVAL_00=> "0x0AA5101E4100A550260C022301822D0A803040C1026201822D0A00D0083C010C000088000001E608",
CSDECODE_B=> "111", CSDECODE_A=> "000", WRITEMODE_B=> "NORMAL",
WRITEMODE_A=> "NORMAL", GSR=> "DISABLED", RESETMODE=> "SYNC",
REGMODE_B=> "NOREG", REGMODE_A=> "NOREG", DATA_WIDTH_B=> 2,
DATA_WIDTH_A=> 2)
-- synopsys translate_on
port map (DIA0=>scuba_vlo, DIA1=>Data7, DIA2=>scuba_vlo,
DIA3=>scuba_vlo, DIA4=>scuba_vlo, DIA5=>scuba_vlo,
DIA6=>scuba_vlo, DIA7=>scuba_vlo, DIA8=>scuba_vlo,
DIA9=>scuba_vlo, DIA10=>scuba_vlo, DIA11=>Data6,
DIA12=>scuba_vlo, DIA13=>scuba_vlo, DIA14=>scuba_vlo,
DIA15=>scuba_vlo, DIA16=>scuba_vlo, DIA17=>scuba_vlo,
ADA0=>scuba_vlo, ADA1=>Address0, ADA2=>Address1,
ADA3=>Address2, ADA4=>Address3, ADA5=>Address4,
ADA6=>Address5, ADA7=>Address6, ADA8=>Address7,
ADA9=>Address8, ADA10=>Address9, ADA11=>Address10,
ADA12=>Address11, ADA13=>Address12, CEA=>ClockEn,
CLKA=>Clock, WEA=>WE, CSA0=>scuba_vlo, CSA1=>scuba_vlo,
CSA2=>scuba_vlo, RSTA=>Reset, DIB0=>scuba_vlo,
DIB1=>scuba_vlo, DIB2=>scuba_vlo, DIB3=>scuba_vlo,
DIB4=>scuba_vlo, DIB5=>scuba_vlo, DIB6=>scuba_vlo,
DIB7=>scuba_vlo, DIB8=>scuba_vlo, DIB9=>scuba_vlo,
DIB10=>scuba_vlo, DIB11=>scuba_vlo, DIB12=>scuba_vlo,
DIB13=>scuba_vlo, DIB14=>scuba_vlo, DIB15=>scuba_vlo,
DIB16=>scuba_vlo, DIB17=>scuba_vlo, ADB0=>scuba_vlo,
ADB1=>scuba_vlo, ADB2=>scuba_vlo, ADB3=>scuba_vlo,
ADB4=>scuba_vlo, ADB5=>scuba_vlo, ADB6=>scuba_vlo,
ADB7=>scuba_vlo, ADB8=>scuba_vlo, ADB9=>scuba_vlo,
ADB10=>scuba_vlo, ADB11=>scuba_vlo, ADB12=>scuba_vlo,
ADB13=>scuba_vlo, CEB=>scuba_vhi, CLKB=>scuba_vlo,
WEB=>scuba_vlo, CSB0=>scuba_vlo, CSB1=>scuba_vlo,
CSB2=>scuba_vlo, RSTB=>scuba_vlo, DOA0=>Q6, DOA1=>Q7,
DOA2=>open, DOA3=>open, DOA4=>open, DOA5=>open, DOA6=>open,
DOA7=>open, DOA8=>open, DOA9=>open, DOA10=>open, DOA11=>open,
DOA12=>open, DOA13=>open, DOA14=>open, DOA15=>open,
DOA16=>open, DOA17=>open, DOB0=>open, DOB1=>open, DOB2=>open,
DOB3=>open, DOB4=>open, DOB5=>open, DOB6=>open, DOB7=>open,
DOB8=>open, DOB9=>open, DOB10=>open, DOB11=>open,
DOB12=>open, DOB13=>open, DOB14=>open, DOB15=>open,
DOB16=>open, DOB17=>open);
end Structure;
-- synopsys translate_off
library xp2;
configuration Structure_CON of ram_memory is
for Structure
for all:VHI use entity xp2.VHI(V); end for;
for all:VLO use entity xp2.VLO(V); end for;
for all:DP16KB use entity xp2.DP16KB(V); end for;
end for;
end Structure_CON;
-- synopsys translate_on