-
Notifications
You must be signed in to change notification settings - Fork 0
/
zbt_6111_sample_pad.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 2 in line 1.
executable file
·988 lines (985 loc) · 58.2 KB
/
zbt_6111_sample_pad.csv
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
#Release 10.1.03 - par K.39 (lin64)
#Copyright (c) 1995-2008 Xilinx, Inc. All rights reserved.
#Tue Dec 13 19:59:06 2016
#
## NOTE: This file is designed to be imported into a spreadsheet program
# such as Microsoft Excel for viewing, printing and sorting. The |
# character is used as the data field separator. This file is also designed
# to support parsing.
#
#INPUT FILE: zbt_6111_sample_map.ncd
#OUTPUT FILE: zbt_6111_sample_pad.csv
#PART TYPE: xc2v6000
#SPEED GRADE: -4
#PACKAGE: bf957
#
# Pinout by Pin Number:
#
# -----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,
Pin Number,Signal Name,Pin Usage,Pin Name,Direction,IO Standard,IO Bank Number,Drive (mA),Slew Rate,Termination,IOB Delay,Voltage,Constraint,DCI Value,IO Register,Signal Integrity,
A2,,,GND,,,,,,,,,,,,,
A3,,,GND,,,,,,,,,,,,,
A4,user3<0>,IOB,IO_L21P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A5,user3<1>,IOB,IO_L21N_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A6,user3<2>,IOB,IO_L22P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A7,user3<3>,IOB,IO_L22N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A8,user1<4>,IOB,IO_L29P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A9,user1<5>,IOB,IO_L29N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A10,user1<6>,IOB,IO_L53P_1,OUTPUT,LVTTL*,1,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
A11,user1<7>,IOB,IO_L53N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A12,,DIFFM,IO_L74P_1,UNUSED,,1,,,,,,,,,,
A13,,DIFFS,IO_L74N_1,UNUSED,,1,,,,,,,,,,
A14,user3<22>,IOB,IO_L94P_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A15,user3<23>,IOB,IO_L94N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
A16,,,GND,,,,,,,,,,,,,
A17,,DIFFM,IO_L96P_0/GCLK4S,UNUSED,,0,,,,,,,,,,
A18,user2<8>,IOB,IO_L96N_0/GCLK5P,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A19,user2<9>,IOB,IO_L76P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A20,user2<24>,IOB,IO_L76N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A21,user2<25>,IOB,IO_L70P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A22,user2<26>,IOB,IO_L70N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A23,user2<27>,IOB,IO_L52P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A24,user2<28>,IOB,IO_L52N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A25,user4<28>,IOB,IO_L27P_0/VREF_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A26,user4<29>,IOB,IO_L27N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A27,user4<30>,IOB,IO_L06P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A28,user4<31>,IOB,IO_L06N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
A29,,,GND,,,,,,,,,,,,,
A30,,,GND,,,,,,,,,,,,,
AA1,ram1_data<10>,IOB,IO_L68N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA2,ram1_data<11>,IOB,IO_L53N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA3,ram1_data<4>,IOB,IO_L50N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA4,ram1_data<3>,IOB,IO_L52N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA5,ram1_data<5>,IOB,IO_L72P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA6,ram1_we_b,IOB,IO_L54N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AA7,ram1_address<12>,IOB,IO_L67P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AA8,ram1_address<3>,IOB,IO_L45P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AA9,ram1_data<35>,IOB,IO_L23N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AA10,,DIFFM,IO_L27P_3,UNUSED,,3,,,,,,,,,,
AA11,,,VCCINT,,,,,,,,1.5,,,,,
AA12,,,VCCO_4,,,4,,,,,3.30,,,,,
AA13,,,VCCO_4,,,4,,,,,3.30,,,,,
AA14,,,VCCO_4,,,4,,,,,3.30,,,,,
AA15,,,VCCO_4,,,4,,,,,3.30,,,,,
AA16,,,VCCINT,,,,,,,,1.5,,,,,
AA17,,,VCCO_5,,,5,,,,,3.30,,,,,
AA18,,,VCCO_5,,,5,,,,,3.30,,,,,
AA19,,,VCCO_5,,,5,,,,,3.30,,,,,
AA20,,,VCCO_5,,,5,,,,,3.30,,,,,
AA21,,,VCCINT,,,,,,,,1.5,,,,,
AA22,,DIFFM,IO_L19P_6,UNUSED,,6,,,,,,,,,,
AA23,,DIFFM,IO_L44P_6,UNUSED,,6,,,,,,,,,,
AA24,ram0_address<2>,IOB,IO_L25N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AA25,ram0_data<26>,IOB,IO_L48P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AA26,ram0_address<3>,IOB,IO_L51P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AA27,ram0_data<8>,IOB,IO_L50N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AA28,ram0_data<16>,IOB,IO_L46N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AA29,,DIFFM,IO_L70P_6,UNUSED,,6,,,,,,,,,,
AA30,ram0_data<2>,IOB,IO_L67N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AA31,ram0_data<1>,IOB,IO_L69N_6/VREF_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AB1,ram1_data<12>,IOB,IO_L68P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AB2,ram1_data<13>,IOB,IO_L53P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AB3,ram1_address<18>,IOB,IO_L50P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB4,,,GND,,,,,,,,,,,,,
AB5,,DIFFS,IO_L49N_3,UNUSED,,3,,,,,,,,,,
AB6,,,VCCO_3,,,3,,,,,3.30,,,,,
AB7,ram1_address<11>,IOB,IO_L43N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB8,ram1_address<4>,IOB,IO_L20N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB9,ram1_data<26>,IOB,IO_L23P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AB10,,DIFFS,IO_L05N_3,UNUSED,,3,,,,,,,,,,
AB11,,DIFFM,IO_L05P_3,UNUSED,,3,,,,,,,,,,
AB12,button3,IOB,IO_L22N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AB13,,DIFFM,IO_L22P_4,UNUSED,,4,,,,,,,,,,
AB14,,DIFFS,IO_L76N_4,UNUSED,,4,,,,,,,,,,
AB15,,,VCCINT,,,,,,,,1.5,,,,,
AB16,,,GND,,,,,,,,,,,,,
AB17,,,VCCINT,,,,,,,,1.5,,,,,
AB18,Q,IOB,IO_L77P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,,,YES,NONE,
AB19,,DIFFS,IO_L53N_5,UNUSED,,5,,,,,,,,,,
AB20,switch<4>,IOB,IO_L53P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AB21,tv_in_clock,IOB,IO_L20N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB22,,DIFFM,IO_L04P_6,UNUSED,,6,,,,,,,,,,
AB23,,DIFFS,IO_L04N_6,UNUSED,,6,,,,,,,,,,
AB24,ram0_address<5>,IOB,IO_L25P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB25,ram0_data<35>,IOB,IO_L27N_6/VREF_6,TRISTATE,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB26,,,VCCO_6,,,6,,,,,3.30,,,,,
AB27,ram0_address<10>,IOB,IO_L50P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB28,,,GND,,,,,,,,,,,,,
AB29,ram0_address<1>,IOB,IO_L49N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AB30,ram0_data<4>,IOB,IO_L67P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AB31,ram0_data<3>,IOB,IO_L69P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AC1,ram1_data<14>,IOB,IO_L47N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AC2,ram1_data<15>,IOB,IO_L44N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AC3,ram1_data<7>,IOB,IO_L46N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AC4,ram1_data<6>,IOB,IO_L52P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AC5,ram1_address<17>,IOB,IO_L49P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC6,ram1_address<10>,IOB,IO_L54P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC7,,DIFFM,IO_L43P_3,UNUSED,,3,,,,,,,,,,
AC8,ram1_address<5>,IOB,IO_L20P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC9,,,GND,,,,,,,,,,,,,
AC10,vga_out_pixel_clock,IOB,IO_L19N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AC11,vga_out_vsync,IOB,IO_L19P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AC12,vga_out_green<0>,IOB,IO_L67N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AC13,vga_out_hsync,IOB,IO_L67P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AC14,vga_out_green<2>,IOB,IO_L76P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AC15,mouse_data,IOB,IO_L91N_4/VREF_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AC16,mouse_clock,IOB,IO_L91P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AC17,ac97_synch,IOB,IO_L77N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC18,ac97_sdata_out,IOB,IO_L74N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC19,beep,IOB,IO_L74P_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC20,switch<5>,IOB,IO_L29N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AC21,switch<3>,IOB,IO_L29P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AC22,tv_in_fifo_read,IOB,IO_L20P_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC23,,,GND,,,,,,,,,,,,,
AC24,ram0_address<14>,IOB,IO_L20N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC25,ram0_address<4>,IOB,IO_L27P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC26,ram0_address<0>,IOB,IO_L22N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC27,ram0_address<11>,IOB,IO_L47N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AC28,,DIFFM,IO_L46P_6,UNUSED,,6,,,,,,,,,,
AC29,,DIFFM,IO_L49P_6,UNUSED,,6,,,,,,,,,,
AC30,ram0_data<6>,IOB,IO_L45N_6/VREF_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AC31,ram0_data<5>,IOB,IO_L52N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AD1,ram1_data<16>,IOB,IO_L47P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AD2,,,GND,,,,,,,,,,,,,
AD3,ram1_address<9>,IOB,IO_L46P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD4,ram1_address<8>,IOB,IO_L22N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD5,ram1_data<18>,IOB,IO_L21N_3/VREF_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AD6,,DIFFS,IO_L03N_3/VREF_3,UNUSED,,3,,,,,,,,,,
AD7,ram1_address<0>,IOB,IO_L03P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD8,,,GND,,,,,,,,,,,,,
AD9,analyzer4_clock,IOB,IO_L01N_4/DOUT,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AD10,,DIFFM,IO_L01P_4/INIT_B,UNUSED,,4,,,,,,,,,,
AD11,button2,IOB,IO_L28N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AD12,vga_out_red<5>,IOB,IO_L28P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AD13,analyzer4_data<3>,IOB,IO_L70N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AD14,,,VCCO_4,,,4,,,,,3.30,,,,,
AD15,vga_out_green<3>,IOB,IO_L70P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AD16,tv_in_line_clock1,IOB,IO_L95N_5/GCLK5S,INPUT,LVDCI_33,5,,,,NONE,,LOCATED,,NO,NONE,
AD17,tv_in_line_clock2,IOB,IO_L95P_5/GCLK4P,INPUT,LVDCI_33,5,,,,NONE,,LOCATED,,NO,NONE,
AD18,,,VCCO_5,,,5,,,,,3.30,,,,,
AD19,tv_in_i2c_data,IOB,IO_L68N_5,TRISTATE,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD20,tv_in_ycrcb<13>,IOB,IO_L68P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AD21,tv_in_i2c_clock,IOB,IO_L26N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD22,switch<7>,IOB,IO_L26P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AD23,,DIFFS,IO_L05N_5/VRP_5,UNUSED,,5,,,TERMINATION,,,,,,,
AD24,,,GND,,,,,,,,,,,,,
AD25,ram0_data<27>,IOB,IO_L20P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AD26,ram0_address<13>,IOB,IO_L22P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD27,ram0_address<12>,IOB,IO_L47P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD28,ram0_address<16>,IOB,IO_L24N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD29,ram0_address<15>,IOB,IO_L23N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AD30,,,GND,,,,,,,,,,,,,
AD31,ram0_data<7>,IOB,IO_L52P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AE1,ram1_data<27>,IOB,IO_L25N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AE2,ram1_data<28>,IOB,IO_L44P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AE3,,,VCCO_3,,,3,,,,,3.30,,,,,
AE4,ram1_data<20>,IOB,IO_L22P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AE5,ram1_data<19>,IOB,IO_L21P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AE6,,DIFFS,IO_L02N_3/VRP_3,UNUSED,,3,,,TERMINATION,,,,,,,
AE7,,,GND,,,,,,,,,,,,,
AE8,vga_out_red<6>,IOB,IO_L04N_4/VREF_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE9,vga_out_red<7>,IOB,IO_L20N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE10,button1,IOB,IO_L20P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AE11,button0,IOB,IO_L49N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AE12,disp_data_in,IOB,IO_L49P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AE13,,,GND,,,,,,,,,,,,,
AE14,flash_address<1>,IOB,IO_L73N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE15,disp_data_out,IOB,IO_L73P_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AE16,,,GND,,,,,,,,,,,,,
AE17,led<7>,IOB,IO_L92N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE18,audio_reset_b,IOB,IO_L92P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE19,,,GND,,,,,,,,,,,,,
AE20,tv_in_ycrcb<15>,IOB,IO_L50N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AE21,led<1>,IOB,IO_L50P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE22,led<0>,IOB,IO_L23N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AE23,switch<6>,IOB,IO_L23P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AE24,,DIFFM,IO_L05P_5/VRN_5,UNUSED,,5,,,TERMINATION,,,,,,,
AE25,,,GND,,,,,,,,,,,,,
AE26,,DIFFM,IO_L02P_6/VRN_6,UNUSED,,6,,,TERMINATION,,,,,,,
AE27,,DIFFS,IO_L02N_6/VRP_6,UNUSED,,6,,,TERMINATION,,,,,,,
AE28,ram0_data<28>,IOB,IO_L24P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AE29,,,VCCO_6,,,6,,,,,3.30,,,,,
AE30,ram0_data<19>,IOB,IO_L45P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AE31,ram0_data<18>,IOB,IO_L43N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AF1,ram1_data<29>,IOB,IO_L25P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AF2,ram1_data<30>,IOB,IO_L24N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AF3,ram1_data<21>,IOB,IO_L04N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AF4,ram1_data<22>,IOB,IO_L06N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AF5,,DIFFM,IO_L02P_3/VRN_3,UNUSED,,3,,,TERMINATION,,,,,,,
AF6,,,GND,,,,,,,,,,,,,
AF7,,DIFFS,IO_L02N_4/D0,UNUSED,,4,,,,,,,,,,
AF8,vga_out_red<4>,IOB,IO_L04P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF9,vga_out_red<3>,IOB,IO_L26N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF10,,,VCCO_4,,,4,,,,,3.30,,,,,
AF11,vga_out_red<0>,IOB,IO_L26P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF12,disp_blank,IOB,IO_L52N_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AF13,disp_ce_b,IOB,IO_L52P_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AF14,disp_clock,IOB,IO_L74N_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AF15,disp_rs,IOB,IO_L74P_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AF16,keyboard_data,IOB,IO_L94N_4/VREF_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AF17,led<6>,IOB,IO_L93P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF18,led<5>,IOB,IO_L71N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF19,led<4>,IOB,IO_L71P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF20,led<3>,IOB,IO_L51N_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF21,tv_in_ycrcb<14>,IOB,IO_L51P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AF22,,,VCCO_5,,,5,,,,,3.30,,,,,
AF23,analyzer4_data<7>,IOB,IO_L03N_5/D4/ALT_VRP_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF24,analyzer4_data<8>,IOB,IO_L03P_5/D5/ALT_VRN_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF25,analyzer4_data<10>,IOB,IO_L02P_5/D7,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AF26,,,GND,,,,,,,,,,,,,
AF27,ram0_data<31>,IOB,IO_L01P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AF28,ram0_data<29>,IOB,IO_L01N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AF29,ram0_data<30>,IOB,IO_L23P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AF30,ram0_data<21>,IOB,IO_L21N_6/VREF_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AF31,ram0_data<20>,IOB,IO_L43P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AG1,ram1_data<31>,IOB,IO_L19N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AG2,ram1_data<32>,IOB,IO_L24P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AG3,ram1_data<23>,IOB,IO_L04P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AG4,ram1_data<24>,IOB,IO_L06P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AG5,,,GND,,,,,,,,,,,,,
AG6,,,DONE,,,,,,,,,,,,,
AG7,analyzer4_data<15>,IOB,IO_L02P_4/D1,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG8,vga_out_green<1>,IOB,IO_L25N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG9,vga_out_red<2>,IOB,IO_L25P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG10,vga_out_red<1>,IOB,IO_L50N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG11,disp_reset_b,IOB,IO_L50P_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AG12,vga_out_blue<4>,IOB,IO_L68N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG13,vga_out_blue<5>,IOB,IO_L68P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG14,vga_out_blue<6>,IOB,IO_L92N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG15,vga_out_blue<7>,IOB,IO_L92P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG16,keyboard_clock,IOB,IO_L94P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AG17,tv_in_ycrcb<19>,IOB,IO_L93N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AG18,tv_in_ycrcb<18>,IOB,IO_L72N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AG19,tv_in_ycrcb<17>,IOB,IO_L72P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AG20,tv_in_ycrcb<16>,IOB,IO_L54N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AG21,led<2>,IOB,IO_L54P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG22,tv_in_fifo_clock,IOB,IO_L24N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AG23,tv_in_ycrcb<12>,IOB,IO_L24P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AG24,analyzer4_data<9>,IOB,IO_L02N_5/D6,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AG25,tv_in_reset_b,IOB,IO_L21P_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AG26,,,M2,,,,,,,,,,,,,
AG27,,,GND,,,,,,,,,,,,,
AG28,ram0_data<33>,IOB,IO_L05P_6,TRISTATE,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AG29,ram0_data<32>,IOB,IO_L05N_6,TRISTATE,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AG30,ram0_data<23>,IOB,IO_L21P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AG31,ram0_data<22>,IOB,IO_L06N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AH1,ram1_data<33>,IOB,IO_L19P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AH2,ram1_data<34>,IOB,IO_L01N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AH3,ram1_data<25>,IOB,IO_L01P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
AH4,,,GND,,,,,,,,,,,,,
AH5,,,PWRDWN_B,,,,,,,,,,,,,
AH6,vga_out_green<4>,IOB,IO_L06N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH7,vga_out_green<6>,IOB,IO_L06P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH8,vga_out_green<7>,IOB,IO_L27N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH9,vga_out_blue<0>,IOB,IO_L27P_4/VREF_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH10,,,GND,,,,,,,,,,,,,
AH11,vga_out_blue<2>,IOB,IO_L54N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH12,flash_data<9>,IOB,IO_L54P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AH13,flash_data<8>,IOB,IO_L77N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AH14,flash_address<0>,IOB,IO_L77P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH15,flash_byte_b,IOB,IO_L96N_4/GCLK1S,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AH16,,,GND,,,,,,,,,,,,,
AH17,analyzer4_data<4>,IOB,IO_L96P_5/GCLK6P,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH18,flash_address<3>,IOB,IO_L76N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH19,flash_address<4>,IOB,IO_L76P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH20,flash_address<6>,IOB,IO_L69N_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH21,flash_address<8>,IOB,IO_L69P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AH22,,,GND,,,,,,,,,,,,,
AH23,tv_in_hff,IOB,IO_L25N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AH24,ac97_bit_clock,IOB,IO_L25P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AH25,tv_in_data_valid,IOB,IO_L21N_5/VREF_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AH26,tv_in_ycrcb<10>,IOB,IO_L04P_5/VREF_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AH27,,,M0,,,,,,,,,,,,,
AH28,,,GND,,,,,,,,,,,,,
AH29,ram0_data<34>,IOB,IO_L03P_6,TRISTATE,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AH30,ram0_data<25>,IOB,IO_L03N_6/VREF_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AH31,ram0_data<24>,IOB,IO_L06P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
AJ1,,,GND,,,,,,,,,,,,,
AJ2,,,VCCAUX,,,,,,,,3.3,,,,,
AJ3,,,GND,,,,,,,,,,,,,
AJ4,,,CCLK,,,,,,,,,,,,,
AJ5,analyzer4_data<13>,IOB,IO_L03P_4/D3/ALT_VRN_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ6,vga_out_green<5>,IOB,IO_L23N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ7,,,VCCO_4,,,4,,,,,3.30,,,,,
AJ8,vga_out_blank_b,IOB,IO_L23P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ9,vga_out_sync_b,IOB,IO_L30N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ10,vga_out_blue<1>,IOB,IO_L30P_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ11,vga_out_blue<3>,IOB,IO_L71N_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ12,flash_data<1>,IOB,IO_L71P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AJ13,flash_data<0>,IOB,IO_L78N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AJ14,,,VCCO_4,,,4,,,,,3.30,,,,,
AJ15,flash_address<23>,IOB,IO_L96P_4/GCLK0P,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ16,clock_feedback_in,IOB,IO_L96N_5/GCLK7S,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AJ17,flash_address<2>,IOB,IO_L91P_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ18,,,VCCO_5,,,5,,,,,3.30,,,,,
AJ19,flash_address<5>,IOB,IO_L73N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ20,flash_address<7>,IOB,IO_L73P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AJ21,flash_ce_b,IOB,IO_L52N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AJ22,tv_in_aff,IOB,IO_L52P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AJ23,tv_in_aef,IOB,IO_L30N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AJ24,ac97_sdata_in,IOB,IO_L30P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AJ25,,,VCCO_5,,,5,,,,,3.30,,,,,
AJ26,tv_in_ycrcb<11>,IOB,IO_L04N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AJ27,tv_in_iso,IOB,IO_L06P_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AJ28,,,M1,,,,,,,,,,,,,
AJ29,,,GND,,,,,,,,,,,,,
AJ30,,,VCCAUX,,,,,,,,3.3,,,,,
AJ31,,,GND,,,,,,,,,,,,,
AK1,,,GND,,,,,,,,,,,,,
AK2,,,GND,,,,,,,,,,,,,
AK3,analyzer4_data<14>,IOB,IO_L03N_4/D2/ALT_VRP_4,OUTPUT,LVTTL*,4,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK4,,DIFFS,IO_L05N_4/VRP_4,UNUSED,,4,,,TERMINATION,,,,,,,
AK5,,DIFFM,IO_L05P_4/VRN_4,UNUSED,,4,,,TERMINATION,,,,,,,
AK6,button_down,IOB,IO_L24N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK7,button_enter,IOB,IO_L24P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK8,,,GND,,,,,,,,,,,,,
AK9,flash_oe_b,IOB,IO_L53N_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AK10,flash_data<15>,IOB,IO_L53P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK11,flash_data<14>,IOB,IO_L72N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK12,flash_data<13>,IOB,IO_L72P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK13,flash_data<12>,IOB,IO_L78P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK14,flash_data<11>,IOB,IO_L93N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK15,flash_data<10>,IOB,IO_L93P_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AK16,,,VCCAUX,,,,,,,,3.3,,,,,
AK17,flash_address<10>,IOB,IO_L91N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK18,flash_reset_b,IOB,IO_L78N_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AK19,flash_address<13>,IOB,IO_L78P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK20,flash_address<15>,IOB,IO_L70N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK21,flash_address<17>,IOB,IO_L70P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK22,flash_address<19>,IOB,IO_L49N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK23,flash_address<21>,IOB,IO_L49P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK24,,,GND,,,,,,,,,,,,,
AK25,switch<2>,IOB,IO_L22N_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AK26,switch<0>,IOB,IO_L22P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AK27,analyzer4_data<5>,IOB,IO_L06N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK28,analyzer4_data<11>,IOB,IO_L01N_5/RDWR_B,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK29,analyzer4_data<12>,IOB,IO_L01P_5/CS_B,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AK30,,,GND,,,,,,,,,,,,,
AK31,,,GND,,,,,,,,,,,,,
AL2,,,GND,,,,,,,,,,,,,
AL3,,,GND,,,,,,,,,,,,,
AL4,button_up,IOB,IO_L21N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL5,button_left,IOB,IO_L21P_4/VREF_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL6,button_right,IOB,IO_L29N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL7,,DIFFM,IO_L29P_4,UNUSED,,4,,,,,,,,,,
AL8,flash_we_b,IOB,IO_L51N_4,OUTPUT,LVDCI_33,4,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
AL9,flash_sts,IOB,IO_L51P_4/VREF_4,INPUT,LVTTL*,4,,,PULLUP,NONE,,LOCATED,,NO,NONE,
AL10,flash_data<7>,IOB,IO_L69N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL11,flash_data<6>,IOB,IO_L69P_4/VREF_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL12,flash_data<5>,IOB,IO_L75N_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL13,flash_data<4>,IOB,IO_L75P_4/VREF_4,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL14,flash_data<3>,IOB,IO_L95N_4/GCLK3S,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL15,flash_data<2>,IOB,IO_L95P_4/GCLK2P,INPUT,LVTTL*,4,,,,NONE,,LOCATED,,NO,NONE,
AL16,,,GND,,,,,,,,,,,,,
AL17,flash_address<9>,IOB,IO_L94N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL18,flash_address<11>,IOB,IO_L94P_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL19,flash_address<12>,IOB,IO_L75N_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL20,flash_address<14>,IOB,IO_L75P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL21,flash_address<16>,IOB,IO_L67N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL22,flash_address<18>,IOB,IO_L67P_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL23,flash_address<20>,IOB,IO_L28N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL24,,DIFFM,IO_L28P_5,UNUSED,,5,,,,,,,,,,
AL25,flash_address<22>,IOB,IO_L27N_5/VREF_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL26,switch<1>,IOB,IO_L27P_5,INPUT,LVTTL*,5,,,,NONE,,LOCATED,,NO,NONE,
AL27,analyzer4_data<6>,IOB,IO_L19N_5,OUTPUT,LVTTL*,5,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
AL28,clock_feedback_out,IOB,IO_L19P_5,OUTPUT,LVDCI_33,5,,NONE*,NONE**,,,LOCATED,,YES,DRIVER,
AL29,,,GND,,,,,,,,,,,,,
AL30,,,GND,,,,,,,,,,,,,
B1,,,GND,,,,,,,,,,,,,
B2,,,GND,,,,,,,,,,,,,
B3,user1<0>,IOB,IO_L01P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B4,,,NC,,,,,,,,,,,,,
B5,user1<2>,IOB,IO_L01N_1,OUTPUT,LVTTL*,1,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
B6,user1<3>,IOB,IO_L19N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B7,,DIFFM,IO_L49P_1,UNUSED,,1,,,,,,,,,,
B8,,,GND,,,,,,,,,,,,,
B9,user3<4>,IOB,IO_L49N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B10,user3<5>,IOB,IO_L67P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B11,user3<6>,IOB,IO_L67N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B12,user3<7>,IOB,IO_L71P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B13,,DIFFS,IO_L71N_1,UNUSED,,1,,,,,,,,,,
B14,user1<22>,IOB,IO_L91P_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B15,user1<23>,IOB,IO_L91N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
B16,,,VCCAUX,,,,,,,,3.3,,,,,
B17,,DIFFM,IO_L93P_0,UNUSED,,0,,,,,,,,,,
B18,user4<8>,IOB,IO_L93N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B19,user4<9>,IOB,IO_L73P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B20,user4<24>,IOB,IO_L73N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B21,user4<25>,IOB,IO_L54P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B22,user4<26>,IOB,IO_L54N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B23,user4<27>,IOB,IO_L30P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B24,,,GND,,,,,,,,,,,,,
B25,user2<29>,IOB,IO_L30N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B26,user2<30>,IOB,IO_L21P_0/VREF_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B27,user2<31>,IOB,IO_L21N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
B28,,,DXP,,,,,,,,,,,,,
B29,,DIFFS,IO_L03N_0/VRP_0,UNUSED,,0,,,,,,,,,,
B30,,,GND,,,,,,,,,,,,,
B31,,,GND,,,,,,,,,,,,,
C1,,,GND,,,,,,,,,,,,,
C2,,,VCCAUX,,,,,,,,3.3,,,,,
C3,,,GND,,,,,,,,,,,,,
C4,,,TDO,,,,,,,,,,,,,
C5,user1<1>,IOB,IO_L19P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C6,user1<9>,IOB,IO_L06N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C7,,,VCCO_1,,,1,,,,,3.30,,,,,
C8,user1<10>,IOB,IO_L25P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C9,user1<11>,IOB,IO_L25N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C10,user1<12>,IOB,IO_L50P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C11,user1<13>,IOB,IO_L50N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C12,user1<14>,IOB,IO_L70P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C13,user1<15>,IOB,IO_L70N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C14,,,VCCO_1,,,1,,,,,3.30,,,,,
C15,clock2,IOB,IO_L96P_1/GCLK2S,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C16,clock_27mhz,IOB,IO_L96N_1/GCLK3P,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
C17,,DIFFM,IO_L78P_0,UNUSED,,0,,,,,,,,,,
C18,,,VCCO_0,,,0,,,,,3.30,,,,,
C19,user4<16>,IOB,IO_L78N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C20,user4<17>,IOB,IO_L72P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C21,user4<18>,IOB,IO_L72N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C22,user4<19>,IOB,IO_L49P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C23,user4<20>,IOB,IO_L49N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C24,user2<21>,IOB,IO_L23P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C25,,,VCCO_0,,,0,,,,,3.30,,,,,
C26,user4<22>,IOB,IO_L23N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
C27,,DIFFM,IO_L03P_0/VRN_0,UNUSED,,0,,,,,,,,,,
C28,,,TDI,,,,,,,,,,,,,
C29,,,GND,,,,,,,,,,,,,
C30,,,VCCAUX,,,,,,,,3.3,,,,,
C31,,,GND,,,,,,,,,,,,,
D1,daughtercard<11>,IOB,IO_L21N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
D2,daughtercard<12>,IOB,IO_L05N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
D3,daughtercard<21>,IOB,IO_L03N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
D4,,,GND,,,,,,,,,,,,,
D5,,,VBATT,,,,,,,,,,,,,
D6,user3<8>,IOB,IO_L06P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D7,user3<9>,IOB,IO_L04N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D8,user3<10>,IOB,IO_L27P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D9,user3<11>,IOB,IO_L27N_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D10,,,GND,,,,,,,,,,,,,
D11,user3<12>,IOB,IO_L68P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D12,user3<13>,IOB,IO_L68N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D13,user3<14>,IOB,IO_L76P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D14,user3<15>,IOB,IO_L76N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
D15,,DIFFS,IO_L78N_1,UNUSED,,1,,,,,,,,,,
D16,,,GND,,,,,,,,,,,,,
D17,,DIFFM,IO_L75P_0/VREF_0,UNUSED,,0,,,,,,,,,,
D18,user2<16>,IOB,IO_L77P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D19,user2<17>,IOB,IO_L77N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D20,user2<18>,IOB,IO_L67P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D21,user2<19>,IOB,IO_L67N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D22,,,GND,,,,,,,,,,,,,
D23,user2<20>,IOB,IO_L24P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D24,user4<21>,IOB,IO_L24N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D25,user2<22>,IOB,IO_L05P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D26,user2<23>,IOB,IO_L05N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
D27,,,PROG_B,,,,,,,,,,,,,
D28,,,GND,,,,,,,,,,,,,
D29,systemace_irq,IOB,IO_L01N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
D30,,DIFFM,IO_L01P_7,UNUSED,,7,,,,,,,,,,
D31,,DIFFS,IO_L19N_7,UNUSED,,7,,,,,,,,,,
E1,daughtercard<9>,IOB,IO_L21P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
E2,daughtercard<10>,IOB,IO_L23N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
E3,daughtercard<19>,IOB,IO_L05P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
E4,daughtercard<20>,IOB,IO_L03P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
E5,,,GND,,,,,,,,,,,,,
E6,user1<8>,IOB,IO_L04P_1/VREF_1,OUTPUT,LVTTL*,1,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
E7,,DIFFM,IO_L03P_1/VRN_1,UNUSED,,1,,,,,,,,,,
E8,,DIFFS,IO_L03N_1/VRP_1,UNUSED,,1,,,,,,,,,,
E9,user1<18>,IOB,IO_L24P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E10,user3<18>,IOB,IO_L24N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E11,user1<19>,IOB,IO_L54P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E12,user3<19>,IOB,IO_L54N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E13,user1<20>,IOB,IO_L75P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E14,user3<20>,IOB,IO_L75N_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E15,user3<21>,IOB,IO_L78P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
E16,user2<10>,IOB,IO_L95P_0/GCLK6S,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E17,user4<10>,IOB,IO_L95N_0/GCLK7P,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E18,user2<11>,IOB,IO_L75N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E19,user4<11>,IOB,IO_L53P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E20,user2<12>,IOB,IO_L53N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E21,user4<12>,IOB,IO_L50P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E22,user2<13>,IOB,IO_L50N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E23,user4<13>,IOB,IO_L25P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E24,user4<14>,IOB,IO_L25N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E25,user4<23>,IOB,IO_L02P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
E26,,,HSWAP_EN,,,,,,,,,,,,,
E27,,,GND,,,,,,,,,,,,,
E28,systemace_ce_b,IOB,IO_L06N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
E29,systemace_address<6>,IOB,IO_L04N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
E30,,DIFFS,IO_L24N_7,UNUSED,,7,,,,,,,,,,
E31,,DIFFM,IO_L19P_7,UNUSED,,7,,,,,,,,,,
F1,analyzer2_clock,IOB,IO_L43N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
F2,analyzer2_data<15>,IOB,IO_L23P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
F3,daughtercard<17>,IOB,IO_L06P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
F4,daughtercard<18>,IOB,IO_L06N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
F5,daughtercard<8>,IOB,IO_L01N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
F6,,,GND,,,,,,,,,,,,,
F7,user1<16>,IOB,IO_L02P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F8,user1<17>,IOB,IO_L02N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F9,user3<17>,IOB,IO_L30P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F10,,,VCCO_1,,,1,,,,,3.30,,,,,
F11,user3<26>,IOB,IO_L30N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F12,user1<27>,IOB,IO_L73P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F13,user3<27>,IOB,IO_L73N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F14,user1<28>,IOB,IO_L93P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F15,user1<21>,IOB,IO_L93N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
F16,user4<2>,IOB,IO_L92P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F17,user2<3>,IOB,IO_L92N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F18,user4<3>,IOB,IO_L69P_0/VREF_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F19,user2<4>,IOB,IO_L69N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F20,user4<4>,IOB,IO_L51P_0/VREF_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F21,user2<5>,IOB,IO_L51N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F22,,,VCCO_0,,,0,,,,,3.30,,,,,
F23,user2<14>,IOB,IO_L04P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F24,user2<15>,IOB,IO_L04N_0/VREF_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
F25,,,DXN,,,,,,,,,,,,,
F26,,,GND,,,,,,,,,,,,,
F27,,DIFFS,IO_L02N_7/VRP_7,UNUSED,,7,,,TERMINATION,,,,,,,
F28,systemace_address<5>,IOB,IO_L06P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
F29,systemace_data<15>,IOB,IO_L04P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
F30,,DIFFM,IO_L24P_7,UNUSED,,7,,,,,,,,,,
F31,,DIFFS,IO_L25N_7,UNUSED,,7,,,,,,,,,,
G1,analyzer1_data<15>,IOB,IO_L43P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
G2,analyzer1_clock,IOB,IO_L45N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
G3,,,VCCO_2,,,2,,,,,3.30,,,,,
G4,daughtercard<16>,IOB,IO_L01P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
G5,daughtercard<7>,IOB,IO_L22N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
G6,,DIFFS,IO_L02N_2/VRP_2,UNUSED,,2,,,TERMINATION,,,,,,,
G7,,,GND,,,,,,,,,,,,,
G8,user3<16>,IOB,IO_L05P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G9,user1<25>,IOB,IO_L20P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G10,user3<25>,IOB,IO_L20N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G11,,DIFFM,IO_L52P_1,UNUSED,,1,,,,,,,,,,
G12,user3<31>,IOB,IO_L52N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G13,,,GND,,,,,,,,,,,,,
G14,user3<28>,IOB,IO_L92P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G15,user1<29>,IOB,IO_L92N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
G16,,,GND,,,,,,,,,,,,,
G17,user4<0>,IOB,IO_L74P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G18,user4<1>,IOB,IO_L74N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G19,,,GND,,,,,,,,,,,,,
G20,user2<1>,IOB,IO_L26P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G21,user4<5>,IOB,IO_L26N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G22,user2<6>,IOB,IO_L20P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G23,user4<6>,IOB,IO_L20N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G24,user4<15>,IOB,IO_L02N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
G25,,,GND,,,,,,,,,,,,,
G26,,DIFFM,IO_L02P_7/VRN_7,UNUSED,,7,,,TERMINATION,,,,,,,
G27,tv_out_reset_b,IOB,IO_L21N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
G28,systemace_data<14>,IOB,IO_L22N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
G29,,,VCCO_7,,,7,,,,,3.30,,,,,
G30,,DIFFS,IO_L44N_7,UNUSED,,7,,,,,,,,,,
G31,,DIFFM,IO_L25P_7,UNUSED,,7,,,,,,,,,,
H1,daughtercard<42>,IOB,IO_L49N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
H2,,,GND,,,,,,,,,,,,,
H3,analyzer1_data<14>,IOB,IO_L46N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
H4,daughtercard<15>,IOB,IO_L24N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
H5,daughtercard<6>,IOB,IO_L22P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
H6,,DIFFM,IO_L02P_2/VRN_2,UNUSED,,2,,,TERMINATION,,,,,,,
H7,daughtercard<3>,IOB,IO_L20N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
H8,,,GND,,,,,,,,,,,,,
H9,user1<24>,IOB,IO_L05N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
H10,user3<24>,IOB,IO_L23P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
H11,user1<26>,IOB,IO_L23N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
H12,,DIFFM,IO_L69P_1,UNUSED,,1,,,,,,,,,,
H13,user3<30>,IOB,IO_L69N_1/VREF_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
H14,,,VCCO_1,,,1,,,,,3.30,,,,,
H15,,DIFFM,IO_L95P_1/GCLK0S,UNUSED,,1,,,,,,,,,,
H16,clock1,IOB,IO_L95N_1/GCLK1P,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
H17,,DIFFM,IO_L71P_0,UNUSED,,0,,,,,,,,,,
H18,,,VCCO_0,,,0,,,,,3.30,,,,,
H19,user2<2>,IOB,IO_L71N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
H20,,DIFFM,IO_L29P_0,UNUSED,,0,,,,,,,,,,
H21,user2<0>,IOB,IO_L29N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
H22,user2<7>,IOB,IO_L01P_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
H23,user4<7>,IOB,IO_L01N_0,INPUT,LVTTL*,0,,,,NONE,,LOCATED,,NO,NONE,
H24,,,GND,,,,,,,,,,,,,
H25,tv_out_blank_b,IOB,IO_L03N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
H26,tv_out_ycrcb<6>,IOB,IO_L03P_7/VREF_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
H27,tv_out_i2c_data,IOB,IO_L21P_7/VREF_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
H28,systemace_data<12>,IOB,IO_L22P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
H29,systemace_data<13>,IOB,IO_L46N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
H30,,,GND,,,,,,,,,,,,,
H31,systemace_address<4>,IOB,IO_L47N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
J1,daughtercard<40>,IOB,IO_L49P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J2,daughtercard<41>,IOB,IO_L45P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J3,daughtercard<14>,IOB,IO_L46P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J4,daughtercard<13>,IOB,IO_L24P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J5,daughtercard<5>,IOB,IO_L48N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J6,daughtercard<1>,IOB,IO_L47N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J7,daughtercard<0>,IOB,IO_L27N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J8,daughtercard<2>,IOB,IO_L20P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
J9,,,GND,,,,,,,,,,,,,
J10,,,TMS,,,,,,,,,,,,,
J11,,DIFFM,IO_L26P_1,UNUSED,,1,,,,,,,,,,
J12,,DIFFS,IO_L26N_1,UNUSED,,1,,,,,,,,,,
J13,user3<29>,IOB,IO_L72P_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
J14,user1<30>,IOB,IO_L72N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
J15,user1<31>,IOB,IO_L77N_1,INPUT,LVTTL*,1,,,,NONE,,LOCATED,,NO,NONE,
J16,,DIFFM,IO_L94P_0,UNUSED,,0,,,,,,,,,,
J17,,DIFFS,IO_L94N_0/VREF_0,UNUSED,,0,,,,,,,,,,
J18,,DIFFM,IO_L91P_0,UNUSED,,0,,,,,,,,,,
J19,,DIFFM,IO_L68P_0,UNUSED,,0,,,,,,,,,,
J20,,DIFFS,IO_L68N_0,UNUSED,,0,,,,,,,,,,
J21,,DIFFM,IO_L19P_0,UNUSED,,0,,,,,,,,,,
J22,,DIFFS,IO_L19N_0,UNUSED,,0,,,,,,,,,,
J23,,,GND,,,,,,,,,,,,,
J24,analyzer3_clock,IOB,IO_L20N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
J25,tv_out_pal_ntsc,IOB,IO_L23N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
J26,tv_out_ycrcb<5>,IOB,IO_L48N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
J27,tv_out_i2c_clock,IOB,IO_L43N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
J28,systemace_data<10>,IOB,IO_L52N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
J29,systemace_data<11>,IOB,IO_L46P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
J30,systemace_address<3>,IOB,IO_L44P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
J31,systemace_address<2>,IOB,IO_L47P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K1,daughtercard<33>,IOB,IO_L70N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K2,daughtercard<39>,IOB,IO_L67N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K3,daughtercard<31>,IOB,IO_L52N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K4,,,GND,,,,,,,,,,,,,
K5,daughtercard<4>,IOB,IO_L48P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K6,,,VCCO_2,,,2,,,,,3.30,,,,,
K7,daughtercard<27>,IOB,IO_L27P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K8,daughtercard<28>,IOB,IO_L25N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K9,daughtercard<30>,IOB,IO_L04P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
K10,analyzer2_data<14>,IOB,IO_L04N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K11,,,TCK,,,,,,,,,,,,,
K12,,DIFFM,IO_L51P_1,UNUSED,,1,,,,,,,,,,
K13,,DIFFS,IO_L51N_1/VREF_1,UNUSED,,1,,,,,,,,,,
K14,,DIFFM,IO_L77P_1,UNUSED,,1,,,,,,,,,,
K15,,,VCCINT,,,,,,,,1.5,,,,,
K16,,,GND,,,,,,,,,,,,,
K17,,,VCCINT,,,,,,,,1.5,,,,,
K18,,DIFFS,IO_L91N_0/VREF_0,UNUSED,,0,,,,,,,,,,
K19,,DIFFM,IO_L22P_0,UNUSED,,0,,,,,,,,,,
K20,,DIFFS,IO_L22N_0,UNUSED,,0,,,,,,,,,,
K21,,DIFFS,IO_L05N_7,UNUSED,,7,,,,,,,,,,
K22,analyzer3_data<13>,IOB,IO_L05P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K23,analyzer3_data<5>,IOB,IO_L27N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K24,analyzer3_data<15>,IOB,IO_L20P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K25,analyzer3_data<14>,IOB,IO_L23P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K26,,,VCCO_7,,,7,,,,,3.30,,,,,
K27,tv_out_subcar_reset,IOB,IO_L43P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
K28,,,GND,,,,,,,,,,,,,
K29,systemace_data<9>,IOB,IO_L50N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
K30,systemace_address<1>,IOB,IO_L53N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
K31,systemace_address<0>,IOB,IO_L68N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L1,analyzer1_data<10>,IOB,IO_L70P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L2,analyzer1_data<9>,IOB,IO_L67P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L3,daughtercard<34>,IOB,IO_L52P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L4,daughtercard<32>,IOB,IO_L69N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L5,analyzer1_data<11>,IOB,IO_L54N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L6,daughtercard<25>,IOB,IO_L47P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L7,daughtercard<43>,IOB,IO_L51N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L8,daughtercard<26>,IOB,IO_L25P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L9,daughtercard<29>,IOB,IO_L44N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
L10,analyzer2_data<13>,IOB,IO_L19N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L11,,,VCCINT,,,,,,,,1.5,,,,,
L12,,,VCCO_1,,,1,,,,,3.30,,,,,
L13,,,VCCO_1,,,1,,,,,3.30,,,,,
L14,,,VCCO_1,,,1,,,,,3.30,,,,,
L15,,,VCCO_1,,,1,,,,,3.30,,,,,
L16,,,VCCINT,,,,,,,,1.5,,,,,
L17,,,VCCO_0,,,0,,,,,3.30,,,,,
L18,,,VCCO_0,,,0,,,,,3.30,,,,,
L19,,,VCCO_0,,,0,,,,,3.30,,,,,
L20,,,VCCO_0,,,0,,,,,3.30,,,,,
L21,,,VCCINT,,,,,,,,1.5,,,,,
L22,analyzer3_data<10>,IOB,IO_L45N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L23,analyzer3_data<9>,IOB,IO_L27P_7/VREF_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L24,analyzer3_data<12>,IOB,IO_L51N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L25,analyzer3_data<11>,IOB,IO_L49N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
L26,tv_out_ycrcb<4>,IOB,IO_L48P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
L27,tv_out_clock,IOB,IO_L67N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
L28,systemace_data<7>,IOB,IO_L52P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
L29,systemace_data<8>,IOB,IO_L50P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
L30,tv_in_ycrcb<2>,IOB,IO_L53P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
L31,systemace_mpbrdy,IOB,IO_L68P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
M1,analyzer1_data<7>,IOB,IO_L76N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M2,analyzer1_data<6>,IOB,IO_L75N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M3,daughtercard<36>,IOB,IO_L73N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
M4,daughtercard<35>,IOB,IO_L69P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
M5,daughtercard<24>,IOB,IO_L54P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
M6,daughtercard<37>,IOB,IO_L68N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
M7,daughtercard<38>,IOB,IO_L51P_2/VREF_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
M8,analyzer1_data<12>,IOB,IO_L53N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M9,analyzer1_data<13>,IOB,IO_L44P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M10,analyzer2_data<12>,IOB,IO_L19P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M11,,,VCCO_2,,,2,,,,,3.30,,,,,
M12,,,VCCINT,,,,,,,,1.5,,,,,
M13,,,VCCO_1,,,1,,,,,3.30,,,,,
M14,,,VCCO_1,,,1,,,,,3.30,,,,,
M15,,,VCCO_1,,,1,,,,,3.30,,,,,
M16,,,VCCINT,,,,,,,,1.5,,,,,
M17,,,VCCO_0,,,0,,,,,3.30,,,,,
M18,,,VCCO_0,,,0,,,,,3.30,,,,,
M19,,,VCCO_0,,,0,,,,,3.30,,,,,
M20,,,VCCINT,,,,,,,,1.5,,,,,
M21,,,VCCO_7,,,7,,,,,3.30,,,,,
M22,analyzer3_data<4>,IOB,IO_L45P_7/VREF_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M23,analyzer3_data<8>,IOB,IO_L54N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M24,analyzer3_data<7>,IOB,IO_L51P_7/VREF_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M25,analyzer3_data<6>,IOB,IO_L49P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
M26,tv_out_ycrcb<3>,IOB,IO_L69N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
M27,tv_out_vsync_b,IOB,IO_L67P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
M28,systemace_data<5>,IOB,IO_L70N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
M29,systemace_data<6>,IOB,IO_L71N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
M30,tv_in_ycrcb<0>,IOB,IO_L74N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
M31,tv_in_ycrcb<1>,IOB,IO_L76N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
N1,analyzer1_data<5>,IOB,IO_L76P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N2,analyzer1_data<4>,IOB,IO_L75P_2/VREF_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N3,analyzer2_data<10>,IOB,IO_L73P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N4,analyzer2_data<4>,IOB,IO_L78N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N5,daughtercard<23>,IOB,IO_L72N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
N6,analyzer2_data<6>,IOB,IO_L68P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N7,,,GND,,,,,,,,,,,,,
N8,rs232_cts,IOB,IO_L53P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
N9,analyzer1_data<8>,IOB,IO_L71N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N10,,DIFFS,IO_L50N_2,UNUSED,,2,,,,,,,,,,
N11,,,VCCO_2,,,2,,,,,3.30,,,,,
N12,,,VCCO_2,,,2,,,,,3.30,,,,,
N13,,,VCCINT,,,,,,,,1.5,,,,,
N14,,,VCCINT,,,,,,,,1.5,,,,,
N15,,,VCCINT,,,,,,,,1.5,,,,,
N16,,,VCCINT,,,,,,,,1.5,,,,,
N17,,,VCCINT,,,,,,,,1.5,,,,,
N18,,,VCCINT,,,,,,,,1.5,,,,,
N19,,,VCCINT,,,,,,,,1.5,,,,,
N20,,,VCCO_7,,,7,,,,,3.30,,,,,
N21,,,VCCO_7,,,7,,,,,3.30,,,,,
N22,,DIFFS,IO_L72N_7,UNUSED,,7,,,,,,,,,,
N23,analyzer3_data<3>,IOB,IO_L54P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
N24,,DIFFS,IO_L95N_7,UNUSED,,7,,,,,,,,,,
N25,,,GND,,,,,,,,,,,,,
N26,tv_out_ycrcb<2>,IOB,IO_L69P_7/VREF_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
N27,tv_out_hsync_b,IOB,IO_L73N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
N28,systemace_data<3>,IOB,IO_L70P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
N29,systemace_data<4>,IOB,IO_L71P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
N30,,DIFFM,IO_L74P_7,UNUSED,,7,,,,,,,,,,
N31,,DIFFM,IO_L76P_7,UNUSED,,7,,,,,,,,,,
P1,analyzer1_data<3>,IOB,IO_L95N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
P2,analyzer1_data<2>,IOB,IO_L93N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
P3,,,VCCO_2,,,2,,,,,3.30,,,,,
P4,rs232_txd,IOB,IO_L78P_2,OUTPUT,LVDCI_33,2,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
P5,daughtercard<22>,IOB,IO_L72P_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
P6,rs232_rxd,IOB,IO_L92N_2,INPUT,LVTTL*,2,,,,NONE,,LOCATED,,NO,NONE,
P7,analyzer2_data<5>,IOB,IO_L77N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
P8,,,VCCO_2,,,2,,,,,3.30,,,,,
P9,analyzer2_data<7>,IOB,IO_L71P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
P10,,DIFFM,IO_L50P_2,UNUSED,,2,,,,,,,,,,
P11,,,VCCO_2,,,2,,,,,3.30,,,,,
P12,,,VCCO_2,,,2,,,,,3.30,,,,,
P13,,,VCCINT,,,,,,,,1.5,,,,,
P14,,,GND,,,,,,,,,,,,,
P15,,,GND,,,,,,,,,,,,,
P16,,,GND,,,,,,,,,,,,,
P17,,,GND,,,,,,,,,,,,,
P18,,,GND,,,,,,,,,,,,,
P19,,,VCCINT,,,,,,,,1.5,,,,,
P20,,,VCCO_7,,,7,,,,,3.30,,,,,
P21,,,VCCO_7,,,7,,,,,3.30,,,,,
P22,,DIFFM,IO_L72P_7,UNUSED,,7,,,,,,,,,,
P23,analyzer3_data<2>,IOB,IO_L75N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
P24,,,VCCO_7,,,7,,,,,3.30,,,,,
P25,,DIFFS,IO_L78N_7,UNUSED,,7,,,,,,,,,,
P26,tv_out_ycrcb<1>,IOB,IO_L92N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
P27,tv_out_ycrcb<9>,IOB,IO_L73P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
P28,systemace_data<2>,IOB,IO_L77N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
P29,,,VCCO_7,,,7,,,,,3.30,,,,,
P30,,DIFFS,IO_L91N_7,UNUSED,,7,,,,,,,,,,
P31,systemace_we_b,IOB,IO_L93N_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R1,analyzer1_data<1>,IOB,IO_L95P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R2,analyzer1_data<0>,IOB,IO_L93P_2/VREF_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R3,rs232_rts,IOB,IO_L96P_2,OUTPUT,LVDCI_33,2,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
R4,,DIFFS,IO_L96N_2,UNUSED,,2,,,,,,,,,,
R5,analyzer2_data<0>,IOB,IO_L94N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R6,analyzer2_data<1>,IOB,IO_L92P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R7,analyzer2_data<11>,IOB,IO_L77P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R8,analyzer2_data<9>,IOB,IO_L74N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R9,analyzer2_data<8>,IOB,IO_L74P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R10,,,VCCINT,,,,,,,,1.5,,,,,
R11,,,VCCO_2,,,2,,,,,3.30,,,,,
R12,,,VCCO_2,,,2,,,,,3.30,,,,,
R13,,,VCCINT,,,,,,,,1.5,,,,,
R14,,,GND,,,,,,,,,,,,,
R15,,,GND,,,,,,,,,,,,,
R16,,,GND,,,,,,,,,,,,,
R17,,,GND,,,,,,,,,,,,,
R18,,,GND,,,,,,,,,,,,,
R19,,,VCCINT,,,,,,,,1.5,,,,,
R20,,,VCCO_7,,,7,,,,,3.30,,,,,
R21,,,VCCO_7,,,7,,,,,3.30,,,,,
R22,,,VCCINT,,,,,,,,1.5,,,,,
R23,analyzer3_data<1>,IOB,IO_L75P_7/VREF_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R24,analyzer3_data<0>,IOB,IO_L95P_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
R25,tv_in_ycrcb<3>,IOB,IO_L78P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
R26,tv_out_ycrcb<0>,IOB,IO_L92P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
R27,tv_out_ycrcb<8>,IOB,IO_L96N_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
R28,systemace_data<0>,IOB,IO_L77P_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
R29,systemace_data<1>,IOB,IO_L94N_7,INPUT,LVTTL*,7,,,,NONE,,LOCATED,,NO,NONE,
R30,,DIFFM,IO_L91P_7,UNUSED,,7,,,,,,,,,,
R31,systemace_oe_b,IOB,IO_L93P_7/VREF_7,OUTPUT,LVTTL*,7,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
T1,,,GND,,,,,,,,,,,,,
T2,,,VCCAUX,,,,,,,,3.3,,,,,
T3,,DIFFS,IO_L94N_3,UNUSED,,3,,,,,,,,,,
T4,,,GND,,,,,,,,,,,,,
T5,,DIFFM,IO_L94P_2,UNUSED,,2,,,,,,,,,,
T6,,DIFFS,IO_L96N_3,UNUSED,,3,,,,,,,,,,
T7,,,GND,,,,,,,,,,,,,
T8,analyzer2_data<3>,IOB,IO_L91N_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
T9,analyzer2_data<2>,IOB,IO_L91P_2,OUTPUT,LVTTL*,2,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
T10,,,GND,,,,,,,,,,,,,
T11,,,VCCINT,,,,,,,,1.5,,,,,
T12,,,VCCINT,,,,,,,,1.5,,,,,
T13,,,VCCINT,,,,,,,,1.5,,,,,
T14,,,GND,,,,,,,,,,,,,
T15,,,GND,,,,,,,,,,,,,
T16,,,GND,,,,,,,,,,,,,
T17,,,GND,,,,,,,,,,,,,
T18,,,GND,,,,,,,,,,,,,
T19,,,VCCINT,,,,,,,,1.5,,,,,
T20,,,VCCINT,,,,,,,,1.5,,,,,
T21,,,VCCINT,,,,,,,,1.5,,,,,
T22,,,GND,,,,,,,,,,,,,
T23,tv_in_ycrcb<6>,IOB,IO_L91N_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
T24,tv_in_ycrcb<4>,IOB,IO_L94N_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
T25,,,GND,,,,,,,,,,,,,
T26,tv_in_ycrcb<5>,IOB,IO_L92N_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
T27,,DIFFM,IO_L96P_7,UNUSED,,7,,,,,,,,,,
T28,,,GND,,,,,,,,,,,,,
T29,tv_out_ycrcb<7>,IOB,IO_L94P_7,OUTPUT,LVDCI_33,7,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
T30,,,VCCAUX,,,,,,,,3.3,,,,,
T31,,,GND,,,,,,,,,,,,,
U1,ram1_bwe_b<1>,IOB,IO_L93N_3/VREF_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U2,ram1_bwe_b<0>,IOB,IO_L91N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U3,ram1_address<7>,IOB,IO_L94P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U4,ram1_ce_b,IOB,IO_L77N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U5,ram1_bwe_b<3>,IOB,IO_L96P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U6,ram1_address<16>,IOB,IO_L95N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U7,analyzer4_data<1>,IOB,IO_L78N_3,OUTPUT,LVTTL*,3,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
U8,analyzer4_data<0>,IOB,IO_L92N_3,OUTPUT,LVTTL*,3,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
U9,,DIFFS,IO_L69N_3/VREF_3,UNUSED,,3,,,,,,,,,,
U10,,,VCCINT,,,,,,,,1.5,,,,,
U11,,,VCCO_3,,,3,,,,,3.30,,,,,
U12,,,VCCO_3,,,3,,,,,3.30,,,,,
U13,,,VCCINT,,,,,,,,1.5,,,,,
U14,,,GND,,,,,,,,,,,,,
U15,,,GND,,,,,,,,,,,,,
U16,,,GND,,,,,,,,,,,,,
U17,,,GND,,,,,,,,,,,,,
U18,,,GND,,,,,,,,,,,,,
U19,,,VCCINT,,,,,,,,1.5,,,,,
U20,,,VCCO_6,,,6,,,,,3.30,,,,,
U21,,,VCCO_6,,,6,,,,,3.30,,,,,
U22,,,VCCINT,,,,,,,,1.5,,,,,
U23,tv_in_ycrcb<7>,IOB,IO_L91P_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
U24,,DIFFM,IO_L94P_6,UNUSED,,6,,,,,,,,,,
U25,ram0_cen_b,IOB,IO_L72N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U26,ram0_bwe_b<3>,IOB,IO_L92P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U27,ram0_bwe_b<1>,IOB,IO_L77N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
U28,ram0_data<9>,IOB,IO_L93N_6/VREF_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
U29,ram0_data<10>,IOB,IO_L78N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
U30,ram0_clk,IOB,IO_L95N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,YES,DRIVER,
U31,ram0_we_b,IOB,IO_L96N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V1,ram1_bwe_b<2>,IOB,IO_L93P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V2,ram1_data<17>,IOB,IO_L91P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
V3,,,VCCO_3,,,3,,,,,3.30,,,,,
V4,ram1_data<8>,IOB,IO_L77P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
V5,ram1_cen_b,IOB,IO_L75N_3/VREF_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V6,ram1_address<15>,IOB,IO_L95P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V7,analyzer4_data<2>,IOB,IO_L78P_3,OUTPUT,LVTTL*,3,12,SLOW,NONE**,,,LOCATED,,NO,NONE,
V8,,,VCCO_3,,,3,,,,,3.30,,,,,
V9,,DIFFM,IO_L69P_3,UNUSED,,3,,,,,,,,,,
V10,,DIFFS,IO_L51N_3/VREF_3,UNUSED,,3,,,,,,,,,,
V11,,,VCCO_3,,,3,,,,,3.30,,,,,
V12,,,VCCO_3,,,3,,,,,3.30,,,,,
V13,,,VCCINT,,,,,,,,1.5,,,,,
V14,,,GND,,,,,,,,,,,,,
V15,,,GND,,,,,,,,,,,,,
V16,,,GND,,,,,,,,,,,,,
V17,,,GND,,,,,,,,,,,,,
V18,,,GND,,,,,,,,,,,,,
V19,,,VCCINT,,,,,,,,1.5,,,,,
V20,,,VCCO_6,,,6,,,,,3.30,,,,,
V21,,,VCCO_6,,,6,,,,,3.30,,,,,
V22,,DIFFS,IO_L53N_6,UNUSED,,6,,,,,,,,,,
V23,tv_in_ycrcb<8>,IOB,IO_L74N_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
V24,,,VCCO_6,,,6,,,,,3.30,,,,,
V25,ram0_oe_b,IOB,IO_L72P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V26,ram0_adv_ld,IOB,IO_L68N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V27,ram0_bwe_b<0>,IOB,IO_L77P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
V28,ram0_data<11>,IOB,IO_L93P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
V29,,,VCCO_6,,,6,,,,,3.30,,,,,
V30,,DIFFM,IO_L95P_6,UNUSED,,6,,,,,,,,,,
V31,ram0_address<18>,IOB,IO_L96P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W1,,DIFFS,IO_L76N_3,UNUSED,,3,,,,,,,,,,
W2,,DIFFS,IO_L74N_3,UNUSED,,3,,,,,,,,,,
W3,ram1_data<0>,IOB,IO_L71N_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
W4,ram1_address<6>,IOB,IO_L70N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W5,ram1_oe_b,IOB,IO_L75P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W6,ram1_address<14>,IOB,IO_L73N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W7,,,GND,,,,,,,,,,,,,
W8,,DIFFM,IO_L92P_3,UNUSED,,3,,,,,,,,,,
W9,,DIFFS,IO_L48N_3,UNUSED,,3,,,,,,,,,,
W10,,DIFFM,IO_L51P_3,UNUSED,,3,,,,,,,,,,
W11,,,VCCO_3,,,3,,,,,3.30,,,,,
W12,,,VCCO_3,,,3,,,,,3.30,,,,,
W13,,,VCCINT,,,,,,,,1.5,,,,,
W14,,,VCCINT,,,,,,,,1.5,,,,,
W15,,,VCCINT,,,,,,,,1.5,,,,,
W16,,,VCCINT,,,,,,,,1.5,,,,,
W17,,,VCCINT,,,,,,,,1.5,,,,,
W18,,,VCCINT,,,,,,,,1.5,,,,,
W19,,,VCCINT,,,,,,,,1.5,,,,,
W20,,,VCCO_6,,,6,,,,,3.30,,,,,
W21,,,VCCO_6,,,6,,,,,3.30,,,,,
W22,,DIFFM,IO_L53P_6,UNUSED,,6,,,,,,,,,,
W23,tv_in_ycrcb<9>,IOB,IO_L74P_6,INPUT,LVTTL*,6,,,,NONE,,LOCATED,,NO,NONE,
W24,,DIFFS,IO_L71N_6,UNUSED,,6,,,,,,,,,,
W25,,,GND,,,,,,,,,,,,,
W26,ram0_ce_b,IOB,IO_L68P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W27,ram0_bwe_b<2>,IOB,IO_L54N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W28,ram0_data<12>,IOB,IO_L73N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
W29,ram0_data<13>,IOB,IO_L78P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
W30,ram0_address<8>,IOB,IO_L75N_6/VREF_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
W31,ram0_address<17>,IOB,IO_L76N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y1,,DIFFM,IO_L76P_3,UNUSED,,3,,,,,,,,,,
Y2,ram1_data<9>,IOB,IO_L74P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
Y3,ram1_data<2>,IOB,IO_L71P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
Y4,ram1_data<1>,IOB,IO_L70P_3,INPUT,LVDCI_33,3,,,,NONE,,LOCATED,,NO,NONE,
Y5,ram1_adv_ld,IOB,IO_L72N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y6,ram1_address<13>,IOB,IO_L73P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y7,ram1_address<2>,IOB,IO_L67N_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y8,ram1_address<1>,IOB,IO_L45N_3/VREF_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y9,ram1_clk,IOB,IO_L48P_3,OUTPUT,LVDCI_33,3,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y10,,DIFFS,IO_L27N_3/VREF_3,UNUSED,,3,,,,,,,,,,
Y11,,,VCCO_3,,,3,,,,,3.30,,,,,
Y12,,,VCCINT,,,,,,,,1.5,,,,,
Y13,,,VCCO_4,,,4,,,,,3.30,,,,,
Y14,,,VCCO_4,,,4,,,,,3.30,,,,,
Y15,,,VCCO_4,,,4,,,,,3.30,,,,,
Y16,,,VCCINT,,,,,,,,1.5,,,,,
Y17,,,VCCO_5,,,5,,,,,3.30,,,,,
Y18,,,VCCO_5,,,5,,,,,3.30,,,,,
Y19,,,VCCO_5,,,5,,,,,3.30,,,,,
Y20,,,VCCINT,,,,,,,,1.5,,,,,
Y21,,,VCCO_6,,,6,,,,,3.30,,,,,
Y22,,DIFFS,IO_L19N_6,UNUSED,,6,,,,,,,,,,
Y23,,DIFFS,IO_L44N_6,UNUSED,,6,,,,,,,,,,
Y24,,DIFFM,IO_L71P_6,UNUSED,,6,,,,,,,,,,
Y25,ram0_address<6>,IOB,IO_L48N_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y26,ram0_address<7>,IOB,IO_L51N_6/VREF_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
Y27,ram0_data<17>,IOB,IO_L54P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
Y28,ram0_data<14>,IOB,IO_L73P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
Y29,ram0_data<15>,IOB,IO_L70N_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
Y30,ram0_data<0>,IOB,IO_L75P_6,BIDIR,LVDCI_33,6,,NONE*,NONE**,NONE,,LOCATED,,NO,NONE,
Y31,ram0_address<9>,IOB,IO_L76P_6,OUTPUT,LVDCI_33,6,,NONE*,NONE**,,,LOCATED,,NO,DRIVER,
# -----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,-----,
#
#* Default value.
#** This default Pullup/Pulldown value can be overridden in Bitgen.
#****** Special VCCO requirements may apply. Please consult the device
# family datasheet for specific guideline on VCCO requirements.
#
#
#