-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExtractKtPTATParameter.vhf
1838 lines (1651 loc) · 77.6 KB
/
ExtractKtPTATParameter.vhf
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
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------------------------------------------------------------------------------
-- Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
--------------------------------------------------------------------------------
-- ____ ____
-- / /\/ /
-- /___/ \ / Vendor: Xilinx
-- \ \ \/ Version : 14.7
-- \ \ Application : sch2hdl
-- / / Filename : ExtractKtPTATParameter.vhf
-- /___/ /\ Timestamp : 06/19/2023 15:05:16
-- \ \ / \
-- \___\/\___\
--
--Command: sch2hdl -sympath /home/user/workspace/melexis_mlx90641/ipcore_dir -intstyle ise -family virtex4 -flat -suppress -vhdl /home/user/workspace/melexis_mlx90641/ExtractKtPTATParameter.vhf -w /home/user/workspace/melexis_mlx90641/ExtractKtPTATParameter.sch
--Design Name: ExtractKtPTATParameter
--Device: virtex4
--Purpose:
-- This vhdl netlist is translated from an ECS schematic. It can be
-- synthesized and simulated, but it should not be modified.
--
library ieee;
use ieee.std_logic_1164.ALL;
use ieee.numeric_std.ALL;
library UNISIM;
use UNISIM.Vcomponents.ALL;
entity M2_1_MXILINX_ExtractKtPTATParameter is
port ( D0 : in std_logic;
D1 : in std_logic;
S0 : in std_logic;
O : out std_logic);
end M2_1_MXILINX_ExtractKtPTATParameter;
architecture BEHAVIORAL of M2_1_MXILINX_ExtractKtPTATParameter is
attribute BOX_TYPE : string ;
signal M0 : std_logic;
signal M1 : std_logic;
component AND2B1
port ( I0 : in std_logic;
I1 : in std_logic;
O : out std_logic);
end component;
attribute BOX_TYPE of AND2B1 : component is "BLACK_BOX";
component OR2
port ( I0 : in std_logic;
I1 : in std_logic;
O : out std_logic);
end component;
attribute BOX_TYPE of OR2 : component is "BLACK_BOX";
component AND2
port ( I0 : in std_logic;
I1 : in std_logic;
O : out std_logic);
end component;
attribute BOX_TYPE of AND2 : component is "BLACK_BOX";
begin
I_36_7 : AND2B1
port map (I0=>S0,
I1=>D0,
O=>M0);
I_36_8 : OR2
port map (I0=>M1,
I1=>M0,
O=>O);
I_36_9 : AND2
port map (I0=>D1,
I1=>S0,
O=>M1);
end BEHAVIORAL;
library ieee;
use ieee.std_logic_1164.ALL;
use ieee.numeric_std.ALL;
library UNISIM;
use UNISIM.Vcomponents.ALL;
entity ExtractKtPTATParameter is
port ( i_clock : in std_logic;
i_ee0x2432 : in std_logic_vector (15 downto 0);
i_reset : in std_logic;
o_ktptat : out std_logic_vector (31 downto 0));
end ExtractKtPTATParameter;
architecture BEHAVIORAL of ExtractKtPTATParameter is
attribute BOX_TYPE : string ;
attribute DOA_REG : string ;
attribute DOB_REG : string ;
attribute INIT_00 : string ;
attribute INIT_01 : string ;
attribute INIT_02 : string ;
attribute INIT_03 : string ;
attribute INIT_04 : string ;
attribute INIT_05 : string ;
attribute INIT_06 : string ;
attribute INIT_07 : string ;
attribute INIT_08 : string ;
attribute INIT_09 : string ;
attribute INIT_0A : string ;
attribute INIT_0B : string ;
attribute INIT_0C : string ;
attribute INIT_0D : string ;
attribute INIT_0E : string ;
attribute INIT_0F : string ;
attribute INIT_10 : string ;
attribute INIT_11 : string ;
attribute INIT_12 : string ;
attribute INIT_13 : string ;
attribute INIT_14 : string ;
attribute INIT_15 : string ;
attribute INIT_16 : string ;
attribute INIT_17 : string ;
attribute INIT_18 : string ;
attribute INIT_19 : string ;
attribute INIT_1A : string ;
attribute INIT_1B : string ;
attribute INIT_1C : string ;
attribute INIT_1D : string ;
attribute INIT_1E : string ;
attribute INIT_1F : string ;
attribute INIT_20 : string ;
attribute INIT_21 : string ;
attribute INIT_22 : string ;
attribute INIT_23 : string ;
attribute INIT_24 : string ;
attribute INIT_25 : string ;
attribute INIT_26 : string ;
attribute INIT_27 : string ;
attribute INIT_28 : string ;
attribute INIT_29 : string ;
attribute INIT_2A : string ;
attribute INIT_2B : string ;
attribute INIT_2C : string ;
attribute INIT_2D : string ;
attribute INIT_2E : string ;
attribute INIT_2F : string ;
attribute INIT_30 : string ;
attribute INIT_31 : string ;
attribute INIT_32 : string ;
attribute INIT_33 : string ;
attribute INIT_34 : string ;
attribute INIT_35 : string ;
attribute INIT_36 : string ;
attribute INIT_37 : string ;
attribute INIT_38 : string ;
attribute INIT_39 : string ;
attribute INIT_3A : string ;
attribute INIT_3B : string ;
attribute INIT_3C : string ;
attribute INIT_3D : string ;
attribute INIT_3E : string ;
attribute INIT_3F : string ;
attribute INIT_A : string ;
attribute INIT_B : string ;
attribute INITP_00 : string ;
attribute INITP_01 : string ;
attribute INITP_02 : string ;
attribute INITP_03 : string ;
attribute INITP_04 : string ;
attribute INITP_05 : string ;
attribute INITP_06 : string ;
attribute INITP_07 : string ;
attribute INIT_FILE : string ;
attribute INVERT_CLK_DOA_REG : string ;
attribute INVERT_CLK_DOB_REG : string ;
attribute RAM_EXTENSION_A : string ;
attribute RAM_EXTENSION_B : string ;
attribute READ_WIDTH_A : string ;
attribute READ_WIDTH_B : string ;
attribute SRVAL_A : string ;
attribute SRVAL_B : string ;
attribute WRITE_MODE_A : string ;
attribute WRITE_MODE_B : string ;
attribute WRITE_WIDTH_A : string ;
attribute WRITE_WIDTH_B : string ;
attribute SIM_COLLISION_CHECK : string ;
attribute HU_SET : string ;
signal ADDRA : std_logic_vector (15 downto 0);
signal MEM1_ADDRA : std_logic_vector (14 downto 0);
signal MEM2_ADDRA : std_logic_vector (14 downto 0);
signal XLXN_41 : std_logic_vector (9 downto 0);
signal XLXN_58 : std_logic_vector (31 downto 0);
signal XLXN_59 : std_logic_vector (31 downto 0);
signal XLXN_68 : std_logic;
signal XLXN_72 : std_logic_vector (31 downto 0);
signal XLXN_74 : std_logic_vector (3 downto 0);
signal XLXN_76 : std_logic;
signal XLXN_82 : std_logic_vector (31 downto 0);
signal XLXN_83 : std_logic_vector (3 downto 0);
signal XLXN_84 : std_logic;
signal XLXN_85 : std_logic;
component BUF
port ( I : in std_logic;
O : out std_logic);
end component;
attribute BOX_TYPE of BUF : component is "BLACK_BOX";
component RAMB16
-- synopsys translate_off
generic( DOA_REG : integer := 0;
DOB_REG : integer := 0;
INIT_00 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_01 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_02 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_03 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_04 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_05 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_06 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_07 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_08 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_09 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0A : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0B : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0C : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0D : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0E : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_0F : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_10 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_11 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_12 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_13 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_14 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_15 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_16 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_17 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_18 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_19 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1A : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1B : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1C : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1D : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1E : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_1F : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_20 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_21 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_22 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_23 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_24 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_25 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_26 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_27 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_28 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_29 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2A : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2B : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2C : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2D : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2E : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_2F : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_30 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_31 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_32 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_33 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_34 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_35 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_36 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_37 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_38 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_39 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3A : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3B : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3C : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3D : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3E : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_3F : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_A : bit_vector := x"000000000";
INIT_B : bit_vector := x"000000000";
INITP_00 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_01 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_02 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_03 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_04 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_05 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_06 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INITP_07 : bit_vector :=
x"0000000000000000000000000000000000000000000000000000000000000000";
INIT_FILE : string := "NONE";
INVERT_CLK_DOA_REG : boolean := FALSE;
INVERT_CLK_DOB_REG : boolean := FALSE;
RAM_EXTENSION_A : string := "NONE";
RAM_EXTENSION_B : string := "NONE";
READ_WIDTH_A : integer := 0;
READ_WIDTH_B : integer := 0;
SRVAL_A : bit_vector := x"000000000";
SRVAL_B : bit_vector := x"000000000";
WRITE_MODE_A : string := "WRITE_FIRST";
WRITE_MODE_B : string := "WRITE_FIRST";
WRITE_WIDTH_A : integer := 0;
WRITE_WIDTH_B : integer := 0;
SIM_COLLISION_CHECK : string := "ALL");
-- synopsys translate_on
port ( ADDRA : in std_logic_vector (14 downto 0);
ADDRB : in std_logic_vector (14 downto 0);
CASCADEINA : in std_logic;
CASCADEINB : in std_logic;
CLKA : in std_logic;
CLKB : in std_logic;
DIA : in std_logic_vector (31 downto 0);
DIB : in std_logic_vector (31 downto 0);
DIPA : in std_logic_vector (3 downto 0);
DIPB : in std_logic_vector (3 downto 0);
ENA : in std_logic;
REGCEA : in std_logic;
REGCEB : in std_logic;
ENB : in std_logic;
SSRA : in std_logic;
SSRB : in std_logic;
WEA : in std_logic_vector (3 downto 0);
WEB : in std_logic_vector (3 downto 0);
CASCADEOUTA : out std_logic;
CASCADEOUTB : out std_logic;
DOA : out std_logic_vector (31 downto 0);
DOB : out std_logic_vector (31 downto 0);
DOPA : out std_logic_vector (3 downto 0);
DOPB : out std_logic_vector (3 downto 0));
end component;
attribute DOA_REG of RAMB16 : component is "0";
attribute DOB_REG of RAMB16 : component is "0";
attribute INIT_00 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_01 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_02 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_03 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_04 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_05 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_06 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_07 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_08 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_09 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0A of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0B of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0C of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0D of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0E of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_0F of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_10 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_11 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_12 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_13 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_14 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_15 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_16 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_17 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_18 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_19 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1A of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1B of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1C of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1D of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1E of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_1F of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_20 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_21 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_22 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_23 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_24 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_25 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_26 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_27 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_28 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_29 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2A of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2B of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2C of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2D of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2E of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_2F of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_30 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_31 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_32 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_33 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_34 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_35 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_36 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_37 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_38 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_39 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3A of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3B of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3C of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3D of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3E of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_3F of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_A of RAMB16 : component is "000000000";
attribute INIT_B of RAMB16 : component is "000000000";
attribute INITP_00 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_01 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_02 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_03 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_04 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_05 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_06 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INITP_07 of RAMB16 : component is
"0000000000000000000000000000000000000000000000000000000000000000";
attribute INIT_FILE of RAMB16 : component is "NONE";
attribute INVERT_CLK_DOA_REG of RAMB16 : component is "FALSE";
attribute INVERT_CLK_DOB_REG of RAMB16 : component is "FALSE";
attribute RAM_EXTENSION_A of RAMB16 : component is "NONE";
attribute RAM_EXTENSION_B of RAMB16 : component is "NONE";
attribute READ_WIDTH_A of RAMB16 : component is "0";
attribute READ_WIDTH_B of RAMB16 : component is "0";
attribute SRVAL_A of RAMB16 : component is "000000000";
attribute SRVAL_B of RAMB16 : component is "000000000";
attribute WRITE_MODE_A of RAMB16 : component is "WRITE_FIRST";
attribute WRITE_MODE_B of RAMB16 : component is "WRITE_FIRST";
attribute WRITE_WIDTH_A of RAMB16 : component is "0";
attribute WRITE_WIDTH_B of RAMB16 : component is "0";
attribute SIM_COLLISION_CHECK of RAMB16 : component is "ALL";
attribute BOX_TYPE of RAMB16 : component is "BLACK_BOX";
component M2_1_MXILINX_ExtractKtPTATParameter
port ( D0 : in std_logic;
D1 : in std_logic;
S0 : in std_logic;
O : out std_logic);
end component;
component GND
port ( G : out std_logic);
end component;
attribute BOX_TYPE of GND : component is "BLACK_BOX";
component VCC
port ( P : out std_logic);
end component;
attribute BOX_TYPE of VCC : component is "BLACK_BOX";
attribute WRITE_WIDTH_B of ROM_KTPTAT_0to3F : label is "36";
attribute WRITE_WIDTH_A of ROM_KTPTAT_0to3F : label is "36";
attribute READ_WIDTH_B of ROM_KTPTAT_0to3F : label is "36";
attribute READ_WIDTH_A of ROM_KTPTAT_0to3F : label is "36";
attribute INIT_0B of ROM_KTPTAT_0to3F : label is
"413e0000413c0000413a00004138000041360000413400004132000041300000";
attribute INIT_0A of ROM_KTPTAT_0to3F : label is
"412e0000412c0000412a00004128000041260000412400004122000041200000";
attribute INIT_2A of ROM_KTPTAT_0to3F : label is
"422b8000422b0000422a8000422a000042298000422900004228800042280000";
attribute INIT_2B of ROM_KTPTAT_0to3F : label is
"422f8000422f0000422e8000422e0000422d8000422d0000422c8000422c0000";
attribute WRITE_MODE_B of ROM_KTPTAT_0to3F : label is "READ_FIRST";
attribute WRITE_MODE_A of ROM_KTPTAT_0to3F : label is "READ_FIRST";
attribute INIT_16 of ROM_KTPTAT_0to3F : label is
"41b7000041b6000041b5000041b4000041b3000041b2000041b1000041b00000";
attribute INIT_15 of ROM_KTPTAT_0to3F : label is
"41af000041ae000041ad000041ac000041ab000041aa000041a9000041a80000";
attribute INIT_3F of ROM_KTPTAT_0to3F : label is
"427f8000427f0000427e8000427e0000427d8000427d0000427c8000427c0000";
attribute INIT_3E of ROM_KTPTAT_0to3F : label is
"427b8000427b0000427a8000427a000042798000427900004278800042780000";
attribute INIT_3D of ROM_KTPTAT_0to3F : label is
"4277800042770000427680004276000042758000427500004274800042740000";
attribute INIT_3C of ROM_KTPTAT_0to3F : label is
"4273800042730000427280004272000042718000427100004270800042700000";
attribute INIT_3B of ROM_KTPTAT_0to3F : label is
"426f8000426f0000426e8000426e0000426d8000426d0000426c8000426c0000";
attribute INIT_3A of ROM_KTPTAT_0to3F : label is
"426b8000426b0000426a8000426a000042698000426900004268800042680000";
attribute INIT_39 of ROM_KTPTAT_0to3F : label is
"4267800042670000426680004266000042658000426500004264800042640000";
attribute INIT_38 of ROM_KTPTAT_0to3F : label is
"4263800042630000426280004262000042618000426100004260800042600000";
attribute INIT_37 of ROM_KTPTAT_0to3F : label is
"425f8000425f0000425e8000425e0000425d8000425d0000425c8000425c0000";
attribute INIT_36 of ROM_KTPTAT_0to3F : label is
"425b8000425b0000425a8000425a000042598000425900004258800042580000";
attribute INIT_35 of ROM_KTPTAT_0to3F : label is
"4257800042570000425680004256000042558000425500004254800042540000";
attribute INIT_34 of ROM_KTPTAT_0to3F : label is
"4253800042530000425280004252000042518000425100004250800042500000";
attribute INIT_33 of ROM_KTPTAT_0to3F : label is
"424f8000424f0000424e8000424e0000424d8000424d0000424c8000424c0000";
attribute INIT_32 of ROM_KTPTAT_0to3F : label is
"424b8000424b0000424a8000424a000042498000424900004248800042480000";
attribute INIT_31 of ROM_KTPTAT_0to3F : label is
"4247800042470000424680004246000042458000424500004244800042440000";
attribute INIT_30 of ROM_KTPTAT_0to3F : label is
"4243800042430000424280004242000042418000424100004240800042400000";
attribute INIT_2F of ROM_KTPTAT_0to3F : label is
"423f8000423f0000423e8000423e0000423d8000423d0000423c8000423c0000";
attribute INIT_2E of ROM_KTPTAT_0to3F : label is
"423b8000423b0000423a8000423a000042398000423900004238800042380000";
attribute INIT_2D of ROM_KTPTAT_0to3F : label is
"4237800042370000423680004236000042358000423500004234800042340000";
attribute INIT_2C of ROM_KTPTAT_0to3F : label is
"4233800042330000423280004232000042318000423100004230800042300000";
attribute INIT_29 of ROM_KTPTAT_0to3F : label is
"4227800042270000422680004226000042258000422500004224800042240000";
attribute INIT_28 of ROM_KTPTAT_0to3F : label is
"4223800042230000422280004222000042218000422100004220800042200000";
attribute INIT_27 of ROM_KTPTAT_0to3F : label is
"421f8000421f0000421e8000421e0000421d8000421d0000421c8000421c0000";
attribute INIT_26 of ROM_KTPTAT_0to3F : label is
"421b8000421b0000421a8000421a000042198000421900004218800042180000";
attribute INIT_25 of ROM_KTPTAT_0to3F : label is
"4217800042170000421680004216000042158000421500004214800042140000";
attribute INIT_24 of ROM_KTPTAT_0to3F : label is
"4213800042130000421280004212000042118000421100004210800042100000";
attribute INIT_23 of ROM_KTPTAT_0to3F : label is
"420f8000420f0000420e8000420e0000420d8000420d0000420c8000420c0000";
attribute INIT_22 of ROM_KTPTAT_0to3F : label is
"420b8000420b0000420a8000420a000042098000420900004208800042080000";
attribute INIT_21 of ROM_KTPTAT_0to3F : label is
"4207800042070000420680004206000042058000420500004204800042040000";
attribute INIT_20 of ROM_KTPTAT_0to3F : label is
"4203800042030000420280004202000042018000420100004200800042000000";
attribute INIT_1F of ROM_KTPTAT_0to3F : label is
"41ff000041fe000041fd000041fc000041fb000041fa000041f9000041f80000";
attribute INIT_1E of ROM_KTPTAT_0to3F : label is
"41f7000041f6000041f5000041f4000041f3000041f2000041f1000041f00000";
attribute INIT_1D of ROM_KTPTAT_0to3F : label is
"41ef000041ee000041ed000041ec000041eb000041ea000041e9000041e80000";
attribute INIT_1C of ROM_KTPTAT_0to3F : label is
"41e7000041e6000041e5000041e4000041e3000041e2000041e1000041e00000";
attribute INIT_1B of ROM_KTPTAT_0to3F : label is
"41df000041de000041dd000041dc000041db000041da000041d9000041d80000";
attribute INIT_1A of ROM_KTPTAT_0to3F : label is
"41d7000041d6000041d5000041d4000041d3000041d2000041d1000041d00000";
attribute INIT_19 of ROM_KTPTAT_0to3F : label is
"41cf000041ce000041cd000041cc000041cb000041ca000041c9000041c80000";
attribute INIT_18 of ROM_KTPTAT_0to3F : label is
"41c7000041c6000041c5000041c4000041c3000041c2000041c1000041c00000";
attribute INIT_17 of ROM_KTPTAT_0to3F : label is
"41bf000041be000041bd000041bc000041bb000041ba000041b9000041b80000";
attribute INIT_14 of ROM_KTPTAT_0to3F : label is
"41a7000041a6000041a5000041a4000041a3000041a2000041a1000041a00000";
attribute INIT_13 of ROM_KTPTAT_0to3F : label is
"419f0000419e0000419d0000419c0000419b0000419a00004199000041980000";
attribute INIT_12 of ROM_KTPTAT_0to3F : label is
"4197000041960000419500004194000041930000419200004191000041900000";
attribute INIT_11 of ROM_KTPTAT_0to3F : label is
"418f0000418e0000418d0000418c0000418b0000418a00004189000041880000";
attribute INIT_10 of ROM_KTPTAT_0to3F : label is
"4187000041860000418500004184000041830000418200004181000041800000";
attribute INIT_0F of ROM_KTPTAT_0to3F : label is
"417e0000417c0000417a00004178000041760000417400004172000041700000";
attribute INIT_0E of ROM_KTPTAT_0to3F : label is
"416e0000416c0000416a00004168000041660000416400004162000041600000";
attribute INIT_0D of ROM_KTPTAT_0to3F : label is
"415e0000415c0000415a00004158000041560000415400004152000041500000";
attribute INIT_0C of ROM_KTPTAT_0to3F : label is
"414e0000414c0000414a00004148000041460000414400004142000041400000";
attribute INIT_09 of ROM_KTPTAT_0to3F : label is
"411e0000411c0000411a00004118000041160000411400004112000041100000";
attribute INIT_08 of ROM_KTPTAT_0to3F : label is
"410e0000410c0000410a00004108000041060000410400004102000041000000";
attribute INIT_07 of ROM_KTPTAT_0to3F : label is
"40fc000040f8000040f4000040f0000040ec000040e8000040e4000040e00000";
attribute INIT_06 of ROM_KTPTAT_0to3F : label is
"40dc000040d8000040d4000040d0000040cc000040c8000040c4000040c00000";
attribute INIT_05 of ROM_KTPTAT_0to3F : label is
"40bc000040b8000040b4000040b0000040ac000040a8000040a4000040a00000";
attribute INIT_04 of ROM_KTPTAT_0to3F : label is
"409c0000409800004094000040900000408c0000408800004084000040800000";
attribute INIT_03 of ROM_KTPTAT_0to3F : label is
"4078000040700000406800004060000040580000405000004048000040400000";
attribute INIT_02 of ROM_KTPTAT_0to3F : label is
"4038000040300000402800004020000040180000401000004008000040000000";
attribute INIT_01 of ROM_KTPTAT_0to3F : label is
"3ff000003fe000003fd000003fc000003fb000003fa000003f9000003f800000";
attribute INIT_00 of ROM_KTPTAT_0to3F : label is
"3f6000003f4000003f2000003f0000003ec000003e8000003e00000000000000";
attribute WRITE_WIDTH_B of ROM_KTPTAT_40to7f : label is "36";
attribute WRITE_WIDTH_A of ROM_KTPTAT_40to7f : label is "36";
attribute READ_WIDTH_B of ROM_KTPTAT_40to7f : label is "36";
attribute READ_WIDTH_A of ROM_KTPTAT_40to7f : label is "36";
attribute INIT_0B of ROM_KTPTAT_40to7f : label is
"c2508000c2510000c2518000c2520000c2528000c2530000c2538000c2540000";
attribute INIT_0A of ROM_KTPTAT_40to7f : label is
"c2548000c2550000c2558000c2560000c2568000c2570000c2578000c2580000";
attribute INIT_2A of ROM_KTPTAT_40to7f : label is
"c1a90000c1aa0000c1ab0000c1ac0000c1ad0000c1ae0000c1af0000c1b00000";
attribute INIT_2B of ROM_KTPTAT_40to7f : label is
"c1a10000c1a20000c1a30000c1a40000c1a50000c1a60000c1a70000c1a80000";
attribute WRITE_MODE_B of ROM_KTPTAT_40to7f : label is "READ_FIRST";
attribute WRITE_MODE_A of ROM_KTPTAT_40to7f : label is "READ_FIRST";
attribute INIT_16 of ROM_KTPTAT_40to7f : label is
"c2248000c2250000c2258000c2260000c2268000c2270000c2278000c2280000";
attribute INIT_15 of ROM_KTPTAT_40to7f : label is
"c2288000c2290000c2298000c22a0000c22a8000c22b0000c22b8000c22c0000";
attribute INIT_3F of ROM_KTPTAT_40to7f : label is
"be000000be800000bec00000bf000000bf200000bf400000bf600000bf800000";
attribute INIT_3E of ROM_KTPTAT_40to7f : label is
"bf900000bfa00000bfb00000bfc00000bfd00000bfe00000bff00000c0000000";
attribute INIT_3D of ROM_KTPTAT_40to7f : label is
"c0080000c0100000c0180000c0200000c0280000c0300000c0380000c0400000";
attribute INIT_3C of ROM_KTPTAT_40to7f : label is
"c0480000c0500000c0580000c0600000c0680000c0700000c0780000c0800000";
attribute INIT_3B of ROM_KTPTAT_40to7f : label is
"c0840000c0880000c08c0000c0900000c0940000c0980000c09c0000c0a00000";
attribute INIT_3A of ROM_KTPTAT_40to7f : label is
"c0a40000c0a80000c0ac0000c0b00000c0b40000c0b80000c0bc0000c0c00000";
attribute INIT_39 of ROM_KTPTAT_40to7f : label is
"c0c40000c0c80000c0cc0000c0d00000c0d40000c0d80000c0dc0000c0e00000";
attribute INIT_38 of ROM_KTPTAT_40to7f : label is
"c0e40000c0e80000c0ec0000c0f00000c0f40000c0f80000c0fc0000c1000000";
attribute INIT_37 of ROM_KTPTAT_40to7f : label is
"c1020000c1040000c1060000c1080000c10a0000c10c0000c10e0000c1100000";
attribute INIT_36 of ROM_KTPTAT_40to7f : label is
"c1120000c1140000c1160000c1180000c11a0000c11c0000c11e0000c1200000";
attribute INIT_35 of ROM_KTPTAT_40to7f : label is
"c1220000c1240000c1260000c1280000c12a0000c12c0000c12e0000c1300000";
attribute INIT_34 of ROM_KTPTAT_40to7f : label is
"c1320000c1340000c1360000c1380000c13a0000c13c0000c13e0000c1400000";
attribute INIT_33 of ROM_KTPTAT_40to7f : label is
"c1420000c1440000c1460000c1480000c14a0000c14c0000c14e0000c1500000";
attribute INIT_32 of ROM_KTPTAT_40to7f : label is
"c1520000c1540000c1560000c1580000c15a0000c15c0000c15e0000c1600000";
attribute INIT_31 of ROM_KTPTAT_40to7f : label is
"c1620000c1640000c1660000c1680000c16a0000c16c0000c16e0000c1700000";
attribute INIT_30 of ROM_KTPTAT_40to7f : label is
"c1720000c1740000c1760000c1780000c17a0000c17c0000c17e0000c1800000";
attribute INIT_2F of ROM_KTPTAT_40to7f : label is
"c1810000c1820000c1830000c1840000c1850000c1860000c1870000c1880000";
attribute INIT_2E of ROM_KTPTAT_40to7f : label is
"c1890000c18a0000c18b0000c18c0000c18d0000c18e0000c18f0000c1900000";
attribute INIT_2D of ROM_KTPTAT_40to7f : label is
"c1910000c1920000c1930000c1940000c1950000c1960000c1970000c1980000";
attribute INIT_2C of ROM_KTPTAT_40to7f : label is
"c1990000c19a0000c19b0000c19c0000c19d0000c19e0000c19f0000c1a00000";
attribute INIT_29 of ROM_KTPTAT_40to7f : label is
"c1b10000c1b20000c1b30000c1b40000c1b50000c1b60000c1b70000c1b80000";
attribute INIT_28 of ROM_KTPTAT_40to7f : label is
"c1b90000c1ba0000c1bb0000c1bc0000c1bd0000c1be0000c1bf0000c1c00000";
attribute INIT_27 of ROM_KTPTAT_40to7f : label is
"c1c10000c1c20000c1c30000c1c40000c1c50000c1c60000c1c70000c1c80000";
attribute INIT_26 of ROM_KTPTAT_40to7f : label is
"c1c90000c1ca0000c1cb0000c1cc0000c1cd0000c1ce0000c1cf0000c1d00000";
attribute INIT_25 of ROM_KTPTAT_40to7f : label is
"c1d10000c1d20000c1d30000c1d40000c1d50000c1d60000c1d70000c1d80000";
attribute INIT_24 of ROM_KTPTAT_40to7f : label is
"c1d90000c1da0000c1db0000c1dc0000c1dd0000c1de0000c1df0000c1e00000";
attribute INIT_23 of ROM_KTPTAT_40to7f : label is
"c1e10000c1e20000c1e30000c1e40000c1e50000c1e60000c1e70000c1e80000";
attribute INIT_22 of ROM_KTPTAT_40to7f : label is
"c1e90000c1ea0000c1eb0000c1ec0000c1ed0000c1ee0000c1ef0000c1f00000";
attribute INIT_21 of ROM_KTPTAT_40to7f : label is
"c1f10000c1f20000c1f30000c1f40000c1f50000c1f60000c1f70000c1f80000";
attribute INIT_20 of ROM_KTPTAT_40to7f : label is
"c1f90000c1fa0000c1fb0000c1fc0000c1fd0000c1fe0000c1ff0000c2000000";
attribute INIT_1F of ROM_KTPTAT_40to7f : label is
"c2008000c2010000c2018000c2020000c2028000c2030000c2038000c2040000";
attribute INIT_1E of ROM_KTPTAT_40to7f : label is
"c2048000c2050000c2058000c2060000c2068000c2070000c2078000c2080000";
attribute INIT_1D of ROM_KTPTAT_40to7f : label is
"c2088000c2090000c2098000c20a0000c20a8000c20b0000c20b8000c20c0000";
attribute INIT_1C of ROM_KTPTAT_40to7f : label is
"c20c8000c20d0000c20d8000c20e0000c20e8000c20f0000c20f8000c2100000";
attribute INIT_1B of ROM_KTPTAT_40to7f : label is
"c2108000c2110000c2118000c2120000c2128000c2130000c2138000c2140000";
attribute INIT_1A of ROM_KTPTAT_40to7f : label is
"c2148000c2150000c2158000c2160000c2168000c2170000c2178000c2180000";
attribute INIT_19 of ROM_KTPTAT_40to7f : label is
"c2188000c2190000c2198000c21a0000c21a8000c21b0000c21b8000c21c0000";
attribute INIT_18 of ROM_KTPTAT_40to7f : label is
"c21c8000c21d0000c21d8000c21e0000c21e8000c21f0000c21f8000c2200000";
attribute INIT_17 of ROM_KTPTAT_40to7f : label is
"c2208000c2210000c2218000c2220000c2228000c2230000c2238000c2240000";
attribute INIT_14 of ROM_KTPTAT_40to7f : label is
"c22c8000c22d0000c22d8000c22e0000c22e8000c22f0000c22f8000c2300000";
attribute INIT_13 of ROM_KTPTAT_40to7f : label is
"c2308000c2310000c2318000c2320000c2328000c2330000c2338000c2340000";
attribute INIT_12 of ROM_KTPTAT_40to7f : label is
"c2348000c2350000c2358000c2360000c2368000c2370000c2378000c2380000";
attribute INIT_11 of ROM_KTPTAT_40to7f : label is
"c2388000c2390000c2398000c23a0000c23a8000c23b0000c23b8000c23c0000";
attribute INIT_10 of ROM_KTPTAT_40to7f : label is
"c23c8000c23d0000c23d8000c23e0000c23e8000c23f0000c23f8000c2400000";
attribute INIT_0F of ROM_KTPTAT_40to7f : label is
"c2408000c2410000c2418000c2420000c2428000c2430000c2438000c2440000";
attribute INIT_0E of ROM_KTPTAT_40to7f : label is
"c2448000c2450000c2458000c2460000c2468000c2470000c2478000c2480000";
attribute INIT_0D of ROM_KTPTAT_40to7f : label is
"c2488000c2490000c2498000c24a0000c24a8000c24b0000c24b8000c24c0000";
attribute INIT_0C of ROM_KTPTAT_40to7f : label is
"c24c8000c24d0000c24d8000c24e0000c24e8000c24f0000c24f8000c2500000";
attribute INIT_09 of ROM_KTPTAT_40to7f : label is
"c2588000c2590000c2598000c25a0000c25a8000c25b0000c25b8000c25c0000";
attribute INIT_08 of ROM_KTPTAT_40to7f : label is
"c25c8000c25d0000c25d8000c25e0000c25e8000c25f0000c25f8000c2600000";
attribute INIT_07 of ROM_KTPTAT_40to7f : label is
"c2608000c2610000c2618000c2620000c2628000c2630000c2638000c2640000";
attribute INIT_06 of ROM_KTPTAT_40to7f : label is
"c2648000c2650000c2658000c2660000c2668000c2670000c2678000c2680000";
attribute INIT_05 of ROM_KTPTAT_40to7f : label is
"c2688000c2690000c2698000c26a0000c26a8000c26b0000c26b8000c26c0000";
attribute INIT_04 of ROM_KTPTAT_40to7f : label is
"c26c8000c26d0000c26d8000c26e0000c26e8000c26f0000c26f8000c2700000";
attribute INIT_03 of ROM_KTPTAT_40to7f : label is
"c2708000c2710000c2718000c2720000c2728000c2730000c2738000c2740000";
attribute INIT_02 of ROM_KTPTAT_40to7f : label is
"c2748000c2750000c2758000c2760000c2768000c2770000c2778000c2780000";
attribute INIT_01 of ROM_KTPTAT_40to7f : label is
"c2788000c2790000c2798000c27a0000c27a8000c27b0000c27b8000c27c0000";
attribute INIT_00 of ROM_KTPTAT_40to7f : label is
"c27c8000c27d0000c27d8000c27e0000c27e8000c27f0000c27f8000c2800000";
attribute HU_SET of XLXI_40_0 : label is "XLXI_40_0_52";
attribute HU_SET of XLXI_40_1 : label is "XLXI_40_1_51";
attribute HU_SET of XLXI_40_2 : label is "XLXI_40_2_50";
attribute HU_SET of XLXI_40_3 : label is "XLXI_40_3_49";
attribute HU_SET of XLXI_40_4 : label is "XLXI_40_4_48";
attribute HU_SET of XLXI_40_5 : label is "XLXI_40_5_47";
attribute HU_SET of XLXI_40_6 : label is "XLXI_40_6_46";
attribute HU_SET of XLXI_40_7 : label is "XLXI_40_7_45";
attribute HU_SET of XLXI_40_8 : label is "XLXI_40_8_44";
attribute HU_SET of XLXI_40_9 : label is "XLXI_40_9_43";
attribute HU_SET of XLXI_40_10 : label is "XLXI_40_10_42";
attribute HU_SET of XLXI_40_11 : label is "XLXI_40_11_41";
attribute HU_SET of XLXI_40_12 : label is "XLXI_40_12_40";
attribute HU_SET of XLXI_40_13 : label is "XLXI_40_13_39";
attribute HU_SET of XLXI_40_14 : label is "XLXI_40_14_38";
attribute HU_SET of XLXI_40_15 : label is "XLXI_40_15_37";
attribute HU_SET of XLXI_40_16 : label is "XLXI_40_16_36";
attribute HU_SET of XLXI_40_17 : label is "XLXI_40_17_35";
attribute HU_SET of XLXI_40_18 : label is "XLXI_40_18_34";
attribute HU_SET of XLXI_40_19 : label is "XLXI_40_19_33";
attribute HU_SET of XLXI_40_20 : label is "XLXI_40_20_32";
attribute HU_SET of XLXI_40_21 : label is "XLXI_40_21_31";
attribute HU_SET of XLXI_40_22 : label is "XLXI_40_22_30";
attribute HU_SET of XLXI_40_23 : label is "XLXI_40_23_29";
attribute HU_SET of XLXI_40_24 : label is "XLXI_40_24_28";
attribute HU_SET of XLXI_40_25 : label is "XLXI_40_25_27";
attribute HU_SET of XLXI_40_26 : label is "XLXI_40_26_26";
attribute HU_SET of XLXI_40_27 : label is "XLXI_40_27_25";
attribute HU_SET of XLXI_40_28 : label is "XLXI_40_28_24";
attribute HU_SET of XLXI_40_29 : label is "XLXI_40_29_23";
attribute HU_SET of XLXI_40_30 : label is "XLXI_40_30_22";
attribute HU_SET of XLXI_40_31 : label is "XLXI_40_31_21";
begin
BUF_MEM1_ADDRA_5 : BUF
port map (I=>XLXN_41(0),
O=>MEM1_ADDRA(5));
BUF_MEM1_ADDRA_6 : BUF
port map (I=>XLXN_41(1),
O=>MEM1_ADDRA(6));
BUF_MEM1_ADDRA_7 : BUF
port map (I=>XLXN_41(2),
O=>MEM1_ADDRA(7));
BUF_MEM1_ADDRA_8 : BUF
port map (I=>XLXN_41(3),
O=>MEM1_ADDRA(8));
BUF_MEM1_ADDRA_9 : BUF
port map (I=>XLXN_41(4),
O=>MEM1_ADDRA(9));
BUF_MEM1_ADDRA_10 : BUF
port map (I=>XLXN_41(5),
O=>MEM1_ADDRA(10));
BUF_MEM1_ADDRA_11 : BUF
port map (I=>XLXN_41(6),
O=>MEM1_ADDRA(11));
BUF_MEM1_ADDRA_12 : BUF
port map (I=>XLXN_41(7),
O=>MEM1_ADDRA(12));
BUF_MEM1_ADDRA_13 : BUF
port map (I=>XLXN_41(8),
O=>MEM1_ADDRA(13));
BUF_MEM2_ADDRA_5 : BUF
port map (I=>ADDRA(0),
O=>MEM2_ADDRA(5));
BUF_MEM2_ADDRA_6 : BUF
port map (I=>ADDRA(1),
O=>MEM2_ADDRA(6));
BUF_MEM2_ADDRA_7 : BUF
port map (I=>ADDRA(2),
O=>MEM2_ADDRA(7));
BUF_MEM2_ADDRA_8 : BUF
port map (I=>ADDRA(3),
O=>MEM2_ADDRA(8));
BUF_MEM2_ADDRA_9 : BUF
port map (I=>ADDRA(4),
O=>MEM2_ADDRA(9));
BUF_MEM2_ADDRA_10 : BUF
port map (I=>ADDRA(5),
O=>MEM2_ADDRA(10));
BUF_MEM2_ADDRA_11 : BUF
port map (I=>ADDRA(6),
O=>MEM2_ADDRA(11));
BUF_MEM2_ADDRA_12 : BUF
port map (I=>ADDRA(7),
O=>MEM2_ADDRA(12));
BUF_MEM2_ADDRA_13 : BUF
port map (I=>ADDRA(8),
O=>MEM2_ADDRA(13));
BUF_0 : BUF
port map (I=>i_ee0x2432(0),
O=>ADDRA(0));
BUF_1 : BUF
port map (I=>i_ee0x2432(1),
O=>ADDRA(1));
BUF_2 : BUF
port map (I=>i_ee0x2432(2),
O=>ADDRA(2));
BUF_3 : BUF
port map (I=>i_ee0x2432(3),
O=>ADDRA(3));
BUF_4 : BUF
port map (I=>i_ee0x2432(4),
O=>ADDRA(4));
BUF_5 : BUF
port map (I=>i_ee0x2432(5),
O=>ADDRA(5));
BUF_6 : BUF
port map (I=>i_ee0x2432(6),
O=>ADDRA(6));
BUF_7 : BUF
port map (I=>i_ee0x2432(7),
O=>ADDRA(7));
BUF_8 : BUF
port map (I=>i_ee0x2432(8),
O=>ADDRA(8));
BUF_9 : BUF
port map (I=>i_ee0x2432(9),
O=>ADDRA(9));
BUF_10 : BUF
port map (I=>i_ee0x2432(10),
O=>ADDRA(10));
BUF_11 : BUF
port map (I=>i_ee0x2432(11),
O=>ADDRA(11));
BUF_12 : BUF
port map (I=>i_ee0x2432(12),
O=>ADDRA(12));