-
Notifications
You must be signed in to change notification settings - Fork 1
/
AP9.fit.rpt
3403 lines (3327 loc) · 525 KB
/
AP9.fit.rpt
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
Fitter report for AP9
Fri Dec 02 11:50:10 2016
Quartus II 32-bit Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Web Edition
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2. Fitter Summary
3. Fitter Settings
4. Parallel Compilation
5. I/O Assignment Warnings
6. Fitter Netlist Optimizations
7. Ignored Assignments
8. Incremental Compilation Preservation Summary
9. Incremental Compilation Partition Settings
10. Incremental Compilation Placement Preservation
11. Pin-Out File
12. Fitter Resource Usage Summary
13. Fitter Partition Statistics
14. Input Pins
15. Output Pins
16. I/O Bank Usage
17. All Package Pins
18. Fitter Resource Utilization by Entity
19. Delay Chain Summary
20. Pad To Core Delay Chain Fanout
21. Control Signals
22. Global & Other Fast Signals
23. Non-Global High Fan-Out Signals
24. Fitter RAM Summary
25. Interconnect Usage Summary
26. Other Routing Usage Summary
27. I/O Rules Summary
28. I/O Rules Details
29. I/O Rules Matrix
30. Fitter Device Options
31. Operating Settings and Conditions
32. Estimated Delay Added for Hold Timing Summary
33. Estimated Delay Added for Hold Timing Details
34. Fitter Messages
35. Fitter Suppressed Messages
----------------
; Legal Notice ;
----------------
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
+---------------------------------------------------------------------------------------+
; Fitter Summary ;
+-------------------------------------+-------------------------------------------------+
; Fitter Status ; Successful - Fri Dec 02 11:50:09 2016 ;
; Quartus II 32-bit Version ; 13.0.1 Build 232 06/12/2013 SP 1 SJ Web Edition ;
; Revision Name ; AP9 ;
; Top-level Entity Name ; AP9 ;
; Family ; Cyclone V ;
; Device ; 5CEBA4F23C7 ;
; Timing Models ; Final ;
; Logic utilization (in ALMs) ; 1,380 / 18,480 ( 7 % ) ;
; Total registers ; 507 ;
; Total pins ; 26 / 224 ( 12 % ) ;
; Total virtual pins ; 0 ;
; Total block memory bits ; 436,288 / 3,153,920 ( 14 % ) ;
; Total DSP Blocks ; 0 / 66 ( 0 % ) ;
; Total HSSI RX PCSs ; 0 ;
; Total HSSI PMA RX Deserializers ; 0 ;
; Total HSSI PMA RX ATT Deserializers ; 0 ;
; Total HSSI TX PCSs ; 0 ;
; Total HSSI PMA TX Serializers ; 0 ;
; Total HSSI PMA TX ATT Serializers ; 0 ;
; Total PLLs ; 0 / 4 ( 0 % ) ;
; Total DLLs ; 0 / 4 ( 0 % ) ;
+-------------------------------------+-------------------------------------------------+
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Settings ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Option ; Setting ; Default Value ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Device ; 5CEBA4F23C7 ; ;
; Use smart compilation ; On ; Off ;
; Minimum Core Junction Temperature ; 0 ; ;
; Maximum Core Junction Temperature ; 85 ; ;
; Device I/O Standard ; 3.3-V LVTTL ; ;
; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation ; On ; On ;
; Enable compact report table ; Off ; Off ;
; Router Timing Optimization Level ; Normal ; Normal ;
; Perform Clocking Topology Analysis During Routing ; Off ; Off ;
; Placement Effort Multiplier ; 1.0 ; 1.0 ;
; Router Effort Multiplier ; 1.0 ; 1.0 ;
; Device initialization clock source ; INIT_INTOSC ; INIT_INTOSC ;
; Optimize Hold Timing ; All Paths ; All Paths ;
; Optimize Multi-Corner Timing ; On ; On ;
; Auto RAM to MLAB Conversion ; On ; On ;
; Equivalent RAM and MLAB Power Up ; Auto ; Auto ;
; Equivalent RAM and MLAB Paused Read Capabilities ; Care ; Care ;
; PowerPlay Power Optimization ; Normal compilation ; Normal compilation ;
; SSN Optimization ; Off ; Off ;
; Optimize Timing ; Normal compilation ; Normal compilation ;
; Optimize Timing for ECOs ; Off ; Off ;
; Regenerate full fit report during ECO compiles ; Off ; Off ;
; Optimize IOC Register Placement for Timing ; Normal ; Normal ;
; Final Placement Optimizations ; Automatically ; Automatically ;
; Fitter Aggressive Routability Optimizations ; Automatically ; Automatically ;
; Fitter Initial Placement Seed ; 1 ; 1 ;
; Weak Pull-Up Resistor ; Off ; Off ;
; Enable Bus-Hold Circuitry ; Off ; Off ;
; Auto Packed Registers ; Auto ; Auto ;
; Auto Delay Chains ; On ; On ;
; Auto Delay Chains for High Fanout Input Pins ; Off ; Off ;
; Treat Bidirectional Pin as Output Pin ; Off ; Off ;
; Perform Physical Synthesis for Combinational Logic for Fitting ; Off ; Off ;
; Perform Physical Synthesis for Combinational Logic for Performance ; Off ; Off ;
; Perform Register Duplication for Performance ; Off ; Off ;
; Perform Register Retiming for Performance ; Off ; Off ;
; Perform Asynchronous Signal Pipelining ; Off ; Off ;
; Fitter Effort ; Auto Fit ; Auto Fit ;
; Physical Synthesis Effort Level ; Normal ; Normal ;
; Logic Cell Insertion - Logic Duplication ; Auto ; Auto ;
; Auto Register Duplication ; Auto ; Auto ;
; Auto Global Clock ; On ; On ;
; Auto Global Register Control Signals ; On ; On ;
; Reserve all unused pins ; As input tri-stated with weak pull-up ; As input tri-stated with weak pull-up ;
; Synchronizer Identification ; Off ; Off ;
; Enable Beneficial Skew Optimization ; On ; On ;
; Optimize Design for Metastability ; On ; On ;
; Active Serial clock source ; FREQ_100MHz ; FREQ_100MHz ;
; Force Fitter to Avoid Periphery Placement Warnings ; Off ; Off ;
; Clamping Diode ; Off ; Off ;
; Enable input tri-state on active configuration pins in user mode ; Off ; Off ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
Parallel compilation was disabled, but you have multiple processors available. Enable parallel compilation to reduce compilation time.
+-------------------------------------+
; Parallel Compilation ;
+----------------------------+--------+
; Processors ; Number ;
+----------------------------+--------+
; Number detected on machine ; 8 ;
; Maximum allowed ; 1 ;
+----------------------------+--------+
+-------------------------------------------------+
; I/O Assignment Warnings ;
+----------+--------------------------------------+
; Pin Name ; Reason ;
+----------+--------------------------------------+
; VGA_VS ; Missing drive strength and slew rate ;
; VGA_HS ; Missing drive strength and slew rate ;
; LEDR[8] ; Missing drive strength and slew rate ;
; VGA_B[3] ; Missing drive strength and slew rate ;
; VGA_B[2] ; Missing drive strength and slew rate ;
; VGA_B[1] ; Missing drive strength and slew rate ;
; VGA_B[0] ; Missing drive strength and slew rate ;
; VGA_G[3] ; Missing drive strength and slew rate ;
; VGA_G[2] ; Missing drive strength and slew rate ;
; VGA_G[1] ; Missing drive strength and slew rate ;
; VGA_G[0] ; Missing drive strength and slew rate ;
; VGA_R[3] ; Missing drive strength and slew rate ;
; VGA_R[2] ; Missing drive strength and slew rate ;
; VGA_R[1] ; Missing drive strength and slew rate ;
; VGA_R[0] ; Missing drive strength and slew rate ;
+----------+--------------------------------------+
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Netlist Optimizations ;
+--------------------------------------------------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+------------------------------------------------------------------------------------------------------------------------------+------------------+-----------------------+
; Node ; Action ; Operation ; Reason ; Node Port ; Node Port Name ; Destination Node ; Destination Port ; Destination Port Name ;
+--------------------------------------------------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+------------------------------------------------------------------------------------------------------------------------------+------------------+-----------------------+
; CLOCK_50~inputCLKENA0 ; Created ; Placement ; Fitter Periphery Placement ; ; ; ; ; ;
; KEY[0]~inputCLKENA0 ; Created ; Placement ; Fitter Periphery Placement ; ; ; ; ; ;
; PS2_CLK~inputCLKENA0 ; Created ; Placement ; Fitter Periphery Placement ; ; ; ; ; ;
; inst5~CLKENA0 ; Created ; Placement ; Fitter Periphery Placement ; ; ; ; ; ;
; lpm_dff1:inst1|lpm_ff:lpm_ff_component|dffs[0]~CLKENA0 ; Created ; Placement ; Fitter Periphery Placement ; ; ; ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[0]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[2]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[3]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[4]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[5]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[7]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[8]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Hcnt[9]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[0]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[1]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[2]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[3]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[7]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[8]~DUPLICATE ; ; ;
; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|VGA_SYNC:inst|Vcnt[9]~DUPLICATE ; ; ;
; VGA_MOD:inst|lpm_ram_dq0:inst3|altsyncram:altsyncram_component|altsyncram_o1j1:auto_generated|out_address_reg_a[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|lpm_ram_dq0:inst3|altsyncram:altsyncram_component|altsyncram_o1j1:auto_generated|out_address_reg_a[0]~DUPLICATE ; ; ;
; VGA_MOD:inst|lpm_ram_dq0:inst3|altsyncram:altsyncram_component|altsyncram_o1j1:auto_generated|out_address_reg_a[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; VGA_MOD:inst|lpm_ram_dq0:inst3|altsyncram:altsyncram_component|altsyncram_o1j1:auto_generated|out_address_reg_a[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_1Khz[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_1Khz[0]~DUPLICATE ; ; ;
; clk_div:inst25|count_1Khz[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_1Khz[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_1Khz[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_1Khz[2]~DUPLICATE ; ; ;
; clk_div:inst25|count_1Mhz[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_1Mhz[4]~DUPLICATE ; ; ;
; clk_div:inst25|count_1hz[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_1hz[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_10hz[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_10hz[0]~DUPLICATE ; ; ;
; clk_div:inst25|count_10hz[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_10hz[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_100Khz[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100Khz[0]~DUPLICATE ; ; ;
; clk_div:inst25|count_100Khz[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100Khz[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_100Khz[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100Khz[2]~DUPLICATE ; ; ;
; clk_div:inst25|count_100hz[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100hz[0]~DUPLICATE ; ; ;
; clk_div:inst25|count_100hz[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100hz[1]~DUPLICATE ; ; ;
; clk_div:inst25|count_100hz[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; clk_div:inst25|count_100hz[2]~DUPLICATE ; ; ;
; snake:inst10|INDICE[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[1]~DUPLICATE ; ; ;
; snake:inst10|INDICE[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[2]~DUPLICATE ; ; ;
; snake:inst10|INDICE[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[3]~DUPLICATE ; ; ;
; snake:inst10|INDICE[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[4]~DUPLICATE ; ; ;
; snake:inst10|INDICE[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[5]~DUPLICATE ; ; ;
; snake:inst10|INDICE[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[8]~DUPLICATE ; ; ;
; snake:inst10|INDICE[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[9]~DUPLICATE ; ; ;
; snake:inst10|INDICE[10] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|INDICE[10]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[3]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[5]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[6] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[6]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[7]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[8]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[9]~DUPLICATE ; ; ;
; snake:inst10|vga_pos[10] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization ; ; ; snake:inst10|vga_pos[10]~DUPLICATE ; ; ;
+--------------------------------------------------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+------------------------------------------------------------------------------------------------------------------------------+------------------+-----------------------+
+-----------------------------------------------------------------------------------------------+
; Ignored Assignments ;
+--------------+----------------+--------------+---------------+---------------+----------------+
; Name ; Ignored Entity ; Ignored From ; Ignored To ; Ignored Value ; Ignored Source ;
+--------------+----------------+--------------+---------------+---------------+----------------+
; Location ; ; ; CLOCK2_50 ; PIN_H13 ; QSF Assignment ;
; Location ; ; ; CLOCK3_50 ; PIN_E10 ; QSF Assignment ;
; Location ; ; ; CLOCK4_50 ; PIN_V15 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[0] ; PIN_W8 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[10] ; PIN_U8 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[11] ; PIN_P6 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[12] ; PIN_R7 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[1] ; PIN_T8 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[2] ; PIN_U11 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[3] ; PIN_Y10 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[4] ; PIN_N6 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[5] ; PIN_AB10 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[6] ; PIN_P12 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[7] ; PIN_P7 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[8] ; PIN_P8 ; QSF Assignment ;
; Location ; ; ; DRAM_ADDR[9] ; PIN_R5 ; QSF Assignment ;
; Location ; ; ; DRAM_BA[0] ; PIN_T7 ; QSF Assignment ;
; Location ; ; ; DRAM_BA[1] ; PIN_AB7 ; QSF Assignment ;
; Location ; ; ; DRAM_CAS_N ; PIN_V6 ; QSF Assignment ;
; Location ; ; ; DRAM_CKE ; PIN_R6 ; QSF Assignment ;
; Location ; ; ; DRAM_CLK ; PIN_AB11 ; QSF Assignment ;
; Location ; ; ; DRAM_CS_N ; PIN_U6 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[0] ; PIN_Y9 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[10] ; PIN_AA8 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[11] ; PIN_AA7 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[12] ; PIN_V10 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[13] ; PIN_V9 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[14] ; PIN_U10 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[15] ; PIN_T9 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[1] ; PIN_T10 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[2] ; PIN_R9 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[3] ; PIN_Y11 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[4] ; PIN_R10 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[5] ; PIN_R11 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[6] ; PIN_R12 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[7] ; PIN_AA12 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[8] ; PIN_AA9 ; QSF Assignment ;
; Location ; ; ; DRAM_DQ[9] ; PIN_AB8 ; QSF Assignment ;
; Location ; ; ; DRAM_LDQM ; PIN_U12 ; QSF Assignment ;
; Location ; ; ; DRAM_RAS_N ; PIN_AB6 ; QSF Assignment ;
; Location ; ; ; DRAM_UDQM ; PIN_N8 ; QSF Assignment ;
; Location ; ; ; DRAM_WE_N ; PIN_AB5 ; QSF Assignment ;
; Location ; ; ; GPIO_0[0] ; PIN_N16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[10] ; PIN_N21 ; QSF Assignment ;
; Location ; ; ; GPIO_0[11] ; PIN_R22 ; QSF Assignment ;
; Location ; ; ; GPIO_0[12] ; PIN_R21 ; QSF Assignment ;
; Location ; ; ; GPIO_0[13] ; PIN_T22 ; QSF Assignment ;
; Location ; ; ; GPIO_0[14] ; PIN_N20 ; QSF Assignment ;
; Location ; ; ; GPIO_0[15] ; PIN_N19 ; QSF Assignment ;
; Location ; ; ; GPIO_0[16] ; PIN_M22 ; QSF Assignment ;
; Location ; ; ; GPIO_0[17] ; PIN_P19 ; QSF Assignment ;
; Location ; ; ; GPIO_0[18] ; PIN_L22 ; QSF Assignment ;
; Location ; ; ; GPIO_0[19] ; PIN_P17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[1] ; PIN_B16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[20] ; PIN_P16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[21] ; PIN_M18 ; QSF Assignment ;
; Location ; ; ; GPIO_0[22] ; PIN_L18 ; QSF Assignment ;
; Location ; ; ; GPIO_0[23] ; PIN_L17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[24] ; PIN_L19 ; QSF Assignment ;
; Location ; ; ; GPIO_0[25] ; PIN_K17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[26] ; PIN_K19 ; QSF Assignment ;
; Location ; ; ; GPIO_0[27] ; PIN_P18 ; QSF Assignment ;
; Location ; ; ; GPIO_0[28] ; PIN_R15 ; QSF Assignment ;
; Location ; ; ; GPIO_0[29] ; PIN_R17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[2] ; PIN_M16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[30] ; PIN_R16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[31] ; PIN_T20 ; QSF Assignment ;
; Location ; ; ; GPIO_0[32] ; PIN_T19 ; QSF Assignment ;
; Location ; ; ; GPIO_0[33] ; PIN_T18 ; QSF Assignment ;
; Location ; ; ; GPIO_0[34] ; PIN_T17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[35] ; PIN_T15 ; QSF Assignment ;
; Location ; ; ; GPIO_0[3] ; PIN_C16 ; QSF Assignment ;
; Location ; ; ; GPIO_0[4] ; PIN_D17 ; QSF Assignment ;
; Location ; ; ; GPIO_0[5] ; PIN_K20 ; QSF Assignment ;
; Location ; ; ; GPIO_0[6] ; PIN_K21 ; QSF Assignment ;
; Location ; ; ; GPIO_0[7] ; PIN_K22 ; QSF Assignment ;
; Location ; ; ; GPIO_0[8] ; PIN_M20 ; QSF Assignment ;
; Location ; ; ; GPIO_0[9] ; PIN_M21 ; QSF Assignment ;
; Location ; ; ; GPIO_1[0] ; PIN_H16 ; QSF Assignment ;
; Location ; ; ; GPIO_1[10] ; PIN_H18 ; QSF Assignment ;
; Location ; ; ; GPIO_1[11] ; PIN_J18 ; QSF Assignment ;
; Location ; ; ; GPIO_1[12] ; PIN_J19 ; QSF Assignment ;
; Location ; ; ; GPIO_1[13] ; PIN_G11 ; QSF Assignment ;
; Location ; ; ; GPIO_1[14] ; PIN_H10 ; QSF Assignment ;
; Location ; ; ; GPIO_1[15] ; PIN_J11 ; QSF Assignment ;
; Location ; ; ; GPIO_1[16] ; PIN_H14 ; QSF Assignment ;
; Location ; ; ; GPIO_1[17] ; PIN_A15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[18] ; PIN_J13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[19] ; PIN_L8 ; QSF Assignment ;
; Location ; ; ; GPIO_1[1] ; PIN_A12 ; QSF Assignment ;
; Location ; ; ; GPIO_1[20] ; PIN_A14 ; QSF Assignment ;
; Location ; ; ; GPIO_1[21] ; PIN_B15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[22] ; PIN_C15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[23] ; PIN_E14 ; QSF Assignment ;
; Location ; ; ; GPIO_1[24] ; PIN_E15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[25] ; PIN_E16 ; QSF Assignment ;
; Location ; ; ; GPIO_1[26] ; PIN_F14 ; QSF Assignment ;
; Location ; ; ; GPIO_1[27] ; PIN_F15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[28] ; PIN_F13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[29] ; PIN_F12 ; QSF Assignment ;
; Location ; ; ; GPIO_1[2] ; PIN_H15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[30] ; PIN_G16 ; QSF Assignment ;
; Location ; ; ; GPIO_1[31] ; PIN_G15 ; QSF Assignment ;
; Location ; ; ; GPIO_1[32] ; PIN_G13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[33] ; PIN_G12 ; QSF Assignment ;
; Location ; ; ; GPIO_1[34] ; PIN_J17 ; QSF Assignment ;
; Location ; ; ; GPIO_1[35] ; PIN_K16 ; QSF Assignment ;
; Location ; ; ; GPIO_1[3] ; PIN_B12 ; QSF Assignment ;
; Location ; ; ; GPIO_1[4] ; PIN_A13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[5] ; PIN_B13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[6] ; PIN_C13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[7] ; PIN_D13 ; QSF Assignment ;
; Location ; ; ; GPIO_1[8] ; PIN_G18 ; QSF Assignment ;
; Location ; ; ; GPIO_1[9] ; PIN_G17 ; QSF Assignment ;
; Location ; ; ; HEX0[0] ; PIN_U21 ; QSF Assignment ;
; Location ; ; ; HEX0[1] ; PIN_V21 ; QSF Assignment ;
; Location ; ; ; HEX0[2] ; PIN_W22 ; QSF Assignment ;
; Location ; ; ; HEX0[3] ; PIN_W21 ; QSF Assignment ;
; Location ; ; ; HEX0[4] ; PIN_Y22 ; QSF Assignment ;
; Location ; ; ; HEX0[5] ; PIN_Y21 ; QSF Assignment ;
; Location ; ; ; HEX0[6] ; PIN_AA22 ; QSF Assignment ;
; Location ; ; ; HEX1[0] ; PIN_AA20 ; QSF Assignment ;
; Location ; ; ; HEX1[1] ; PIN_AB20 ; QSF Assignment ;
; Location ; ; ; HEX1[2] ; PIN_AA19 ; QSF Assignment ;
; Location ; ; ; HEX1[3] ; PIN_AA18 ; QSF Assignment ;
; Location ; ; ; HEX1[4] ; PIN_AB18 ; QSF Assignment ;
; Location ; ; ; HEX1[5] ; PIN_AA17 ; QSF Assignment ;
; Location ; ; ; HEX1[6] ; PIN_U22 ; QSF Assignment ;
; Location ; ; ; HEX2[0] ; PIN_Y19 ; QSF Assignment ;
; Location ; ; ; HEX2[1] ; PIN_AB17 ; QSF Assignment ;
; Location ; ; ; HEX2[2] ; PIN_AA10 ; QSF Assignment ;
; Location ; ; ; HEX2[3] ; PIN_Y14 ; QSF Assignment ;
; Location ; ; ; HEX2[4] ; PIN_V14 ; QSF Assignment ;
; Location ; ; ; HEX2[5] ; PIN_AB22 ; QSF Assignment ;
; Location ; ; ; HEX2[6] ; PIN_AB21 ; QSF Assignment ;
; Location ; ; ; HEX3[0] ; PIN_Y16 ; QSF Assignment ;
; Location ; ; ; HEX3[1] ; PIN_W16 ; QSF Assignment ;
; Location ; ; ; HEX3[2] ; PIN_Y17 ; QSF Assignment ;
; Location ; ; ; HEX3[3] ; PIN_V16 ; QSF Assignment ;
; Location ; ; ; HEX3[4] ; PIN_U17 ; QSF Assignment ;
; Location ; ; ; HEX3[5] ; PIN_V18 ; QSF Assignment ;
; Location ; ; ; HEX3[6] ; PIN_V19 ; QSF Assignment ;
; Location ; ; ; HEX4[0] ; PIN_U20 ; QSF Assignment ;
; Location ; ; ; HEX4[1] ; PIN_Y20 ; QSF Assignment ;
; Location ; ; ; HEX4[2] ; PIN_V20 ; QSF Assignment ;
; Location ; ; ; HEX4[3] ; PIN_U16 ; QSF Assignment ;
; Location ; ; ; HEX4[4] ; PIN_U15 ; QSF Assignment ;
; Location ; ; ; HEX4[5] ; PIN_Y15 ; QSF Assignment ;
; Location ; ; ; HEX4[6] ; PIN_P9 ; QSF Assignment ;
; Location ; ; ; HEX5[0] ; PIN_N9 ; QSF Assignment ;
; Location ; ; ; HEX5[1] ; PIN_M8 ; QSF Assignment ;
; Location ; ; ; HEX5[2] ; PIN_T14 ; QSF Assignment ;
; Location ; ; ; HEX5[3] ; PIN_P14 ; QSF Assignment ;
; Location ; ; ; HEX5[4] ; PIN_C1 ; QSF Assignment ;
; Location ; ; ; HEX5[5] ; PIN_C2 ; QSF Assignment ;
; Location ; ; ; HEX5[6] ; PIN_W19 ; QSF Assignment ;
; Location ; ; ; KEY[1] ; PIN_W9 ; QSF Assignment ;
; Location ; ; ; KEY[2] ; PIN_M7 ; QSF Assignment ;
; Location ; ; ; KEY[3] ; PIN_M6 ; QSF Assignment ;
; Location ; ; ; LEDR[0] ; PIN_AA2 ; QSF Assignment ;
; Location ; ; ; LEDR[1] ; PIN_AA1 ; QSF Assignment ;
; Location ; ; ; LEDR[2] ; PIN_W2 ; QSF Assignment ;
; Location ; ; ; LEDR[3] ; PIN_Y3 ; QSF Assignment ;
; Location ; ; ; LEDR[4] ; PIN_N2 ; QSF Assignment ;
; Location ; ; ; LEDR[5] ; PIN_N1 ; QSF Assignment ;
; Location ; ; ; LEDR[6] ; PIN_U2 ; QSF Assignment ;
; Location ; ; ; LEDR[7] ; PIN_U1 ; QSF Assignment ;
; Location ; ; ; LEDR[9] ; PIN_L1 ; QSF Assignment ;
; Location ; ; ; PS2_CLK2 ; PIN_E2 ; QSF Assignment ;
; Location ; ; ; PS2_DAT2 ; PIN_G1 ; QSF Assignment ;
; Location ; ; ; RESET_N ; PIN_P22 ; QSF Assignment ;
; Location ; ; ; SD_CLK ; PIN_H11 ; QSF Assignment ;
; Location ; ; ; SD_CMD ; PIN_B11 ; QSF Assignment ;
; Location ; ; ; SD_DATA[0] ; PIN_K9 ; QSF Assignment ;
; Location ; ; ; SD_DATA[1] ; PIN_D12 ; QSF Assignment ;
; Location ; ; ; SD_DATA[2] ; PIN_E12 ; QSF Assignment ;
; Location ; ; ; SD_DATA[3] ; PIN_C11 ; QSF Assignment ;
; Location ; ; ; SW[3] ; PIN_T12 ; QSF Assignment ;
; Location ; ; ; SW[4] ; PIN_AA15 ; QSF Assignment ;
; Location ; ; ; SW[5] ; PIN_AB15 ; QSF Assignment ;
; I/O Standard ; ; ; CLOCK2_50 ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; CLOCK3_50 ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; CLOCK4_50 ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[10] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[11] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[12] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[7] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[8] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_ADDR[9] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_BA[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_BA[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_CAS_N ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_CKE ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_CLK ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_CS_N ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[10] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[11] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[12] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[13] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[14] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[15] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[7] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[8] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_DQ[9] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_LDQM ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_RAS_N ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_UDQM ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; DRAM_WE_N ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[10] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[11] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[12] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[13] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[14] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[15] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[16] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[17] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[18] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[19] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[20] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[21] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[22] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[23] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[24] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[25] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[26] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[27] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[28] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[29] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[30] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[31] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[32] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[33] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[34] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[35] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[7] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[8] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_0[9] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[10] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[11] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[12] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[13] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[14] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[15] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[16] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[17] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[18] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[19] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[20] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[21] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[22] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[23] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[24] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[25] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[26] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[27] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[28] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[29] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[30] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[31] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[32] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[33] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[34] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[35] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[7] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[8] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; GPIO_1[9] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX0[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX1[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX2[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX3[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX4[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; HEX5[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; KEY[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; KEY[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; KEY[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[5] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[6] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[7] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; LEDR[9] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; PS2_CLK2 ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; PS2_DAT2 ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; RESET_N ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_CLK ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_CMD ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_DATA[0] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_DATA[1] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_DATA[2] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SD_DATA[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SW[3] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SW[4] ; 3.3-V LVTTL ; QSF Assignment ;
; I/O Standard ; ; ; SW[5] ; 3.3-V LVTTL ; QSF Assignment ;
+--------------+----------------+--------------+---------------+---------------+----------------+
+----------------------------------------------+
; Incremental Compilation Preservation Summary ;
+---------------------+------------------------+
; Type ; Value ;
+---------------------+------------------------+
; Placement (by node) ; ;
; -- Requested ; 0 / 3125 ( 0.00 % ) ;
; -- Achieved ; 0 / 3125 ( 0.00 % ) ;
; ; ;
; Routing (by net) ; ;
; -- Requested ; 0 / 0 ( 0.00 % ) ;
; -- Achieved ; 0 / 0 ( 0.00 % ) ;
+---------------------+------------------------+
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Partition Settings ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Partition Name ; Partition Type ; Netlist Type Used ; Preservation Level Used ; Netlist Type Requested ; Preservation Level Requested ; Contents ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Top ; User-created ; Source File ; N/A ; Source File ; N/A ; ;
; hard_block:auto_generated_inst ; Auto-generated ; Source File ; N/A ; Source File ; N/A ; hard_block:auto_generated_inst ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
+------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Placement Preservation ;
+--------------------------------+---------+-------------------+-------------------------+-------------------+
; Partition Name ; # Nodes ; # Preserved Nodes ; Preservation Level Used ; Netlist Type Used ;
+--------------------------------+---------+-------------------+-------------------------+-------------------+
; Top ; 3125 ; 0 ; N/A ; Source File ;
; hard_block:auto_generated_inst ; 0 ; 0 ; N/A ; Source File ;
+--------------------------------+---------+-------------------+-------------------------+-------------------+
+--------------+
; Pin-Out File ;
+--------------+
The pin-out file can be found in Z:/AP9 - DE0-CV - NOCPU/AP9.pin.
+-------------------------------------------------------------------------------------------+
; Fitter Resource Usage Summary ;
+-------------------------------------------------------------+---------------------+-------+
; Resource ; Usage ; % ;
+-------------------------------------------------------------+---------------------+-------+
; Logic utilization (ALMs needed / total ALMs on device) ; 1,380 / 18,480 ; 7 % ;
; ALMs needed [=A-B+C] ; 1,380 ; ;
; [A] ALMs used in final placement [=a+b+c+d] ; 1,400 / 18,480 ; 8 % ;
; [a] ALMs used for LUT logic and registers ; 154 ; ;
; [b] ALMs used for LUT logic ; 1,169 ; ;
; [c] ALMs used for registers ; 77 ; ;
; [d] ALMs used for memory (up to half of total ALMs) ; 0 ; ;
; [B] Estimate of ALMs recoverable by dense packing ; 56 / 18,480 ; < 1 % ;
; [C] Estimate of ALMs unavailable [=a+b+c+d] ; 36 / 18,480 ; < 1 % ;
; [a] Due to location constrained logic ; 8 ; ;
; [b] Due to LAB-wide signal conflicts ; 18 ; ;
; [c] Due to LAB input limits ; 10 ; ;
; [d] Due to virtual I/Os ; 0 ; ;
; ; ; ;
; Difficulty packing design ; Low ; ;
; ; ; ;
; Total LABs: partially or completely used ; 188 / 1,848 ; 10 % ;
; -- Logic LABs ; 188 ; ;
; -- Memory LABs (up to half of total LABs) ; 0 ; ;
; ; ; ;
; Combinational ALUT usage for logic ; 2,527 ; ;
; -- 7 input functions ; 8 ; ;
; -- 6 input functions ; 104 ; ;
; -- 5 input functions ; 114 ; ;
; -- 4 input functions ; 685 ; ;
; -- <=3 input functions ; 1,616 ; ;
; Combinational ALUT usage for route-throughs ; 81 ; ;
; Dedicated logic registers ; 507 ; ;
; -- By type: ; ; ;
; -- Primary logic registers ; 460 / 36,960 ; 1 % ;
; -- Secondary logic registers ; 47 / 36,960 ; < 1 % ;
; -- By function: ; ; ;
; -- Design implementation registers ; 462 ; ;
; -- Routing optimization registers ; 45 ; ;
; ; ; ;
; Virtual pins ; 0 ; ;
; I/O pins ; 26 / 224 ; 12 % ;
; -- Clock pins ; 1 / 9 ; 11 % ;
; -- Dedicated input pins ; 0 / 11 ; 0 % ;
; ; ; ;
; Global signals ; 5 ; ;
; M10K blocks ; 55 / 308 ; 18 % ;
; Total MLAB memory bits ; 0 ; ;
; Total block memory bits ; 436,288 / 3,153,920 ; 14 % ;
; Total block memory implementation bits ; 563,200 / 3,153,920 ; 18 % ;
; Total DSP Blocks ; 0 / 66 ; 0 % ;
; Fractional PLLs ; 0 / 4 ; 0 % ;
; Global clocks ; 5 / 16 ; 31 % ;
; Quadrant clocks ; 0 / 88 ; 0 % ;
; SERDES Transmitters ; 0 / 68 ; 0 % ;
; SERDES Receivers ; 0 / 68 ; 0 % ;
; JTAGs ; 0 / 1 ; 0 % ;
; ASMI blocks ; 0 / 1 ; 0 % ;
; CRC blocks ; 0 / 1 ; 0 % ;
; Remote update blocks ; 0 / 1 ; 0 % ;
; Impedance control blocks ; 0 / 3 ; 0 % ;
; Average interconnect usage (total/H/V) ; 3% / 3% / 4% ; ;
; Peak interconnect usage (total/H/V) ; 18% / 17% / 20% ; ;
; Maximum fan-out ; 320 ; ;
; Highest non-global fan-out ; 160 ; ;
; Total fan-out ; 11407 ; ;
; Average fan-out ; 3.53 ; ;
+-------------------------------------------------------------+---------------------+-------+
+---------------------------------------------------------------------------------------------------------------------+
; Fitter Partition Statistics ;
+-------------------------------------------------------------+----------------------+--------------------------------+
; Statistic ; Top ; hard_block:auto_generated_inst ;
+-------------------------------------------------------------+----------------------+--------------------------------+
; Logic utilization (ALMs needed / total ALMs on device) ; 1380 / 18480 ( 7 % ) ; 0 / 18480 ( 0 % ) ;
; ALMs needed [=A-B+C] ; 1380 ; 0 ;
; [A] ALMs used in final placement [=a+b+c+d] ; 1400 / 18480 ( 8 % ) ; 0 / 18480 ( 0 % ) ;
; [a] ALMs used for LUT logic and registers ; 154 ; 0 ;
; [b] ALMs used for LUT logic ; 1169 ; 0 ;
; [c] ALMs used for registers ; 77 ; 0 ;
; [d] ALMs used for memory (up to half of total ALMs) ; 0 ; 0 ;
; [B] Estimate of ALMs recoverable by dense packing ; 56 / 18480 ( < 1 % ) ; 0 / 18480 ( 0 % ) ;
; [C] Estimate of ALMs unavailable [=a+b+c+d] ; 36 / 18480 ( < 1 % ) ; 0 / 18480 ( 0 % ) ;
; [a] Due to location constrained logic ; 8 ; 0 ;
; [b] Due to LAB-wide signal conflicts ; 18 ; 0 ;
; [c] Due to LAB input limits ; 10 ; 0 ;
; [d] Due to virtual I/Os ; 0 ; 0 ;
; ; ; ;
; Difficulty packing design ; Low ; Low ;
; ; ; ;
; Total LABs: partially or completely used ; 188 / 1848 ( 10 % ) ; 0 / 1848 ( 0 % ) ;
; -- Logic LABs ; 188 ; 0 ;
; -- Memory LABs (up to half of total LABs) ; 0 ; 0 ;
; ; ; ;
; Combinational ALUT usage for logic ; 2527 ; 0 ;
; -- 7 input functions ; 8 ; 0 ;
; -- 6 input functions ; 104 ; 0 ;
; -- 5 input functions ; 114 ; 0 ;
; -- 4 input functions ; 685 ; 0 ;
; -- <=3 input functions ; 1616 ; 0 ;
; Combinational ALUT usage for route-throughs ; 81 ; 0 ;
; Memory ALUT usage ; 0 ; 0 ;
; -- 64-address deep ; 0 ; 0 ;
; -- 32-address deep ; 0 ; 0 ;
; ; ; ;
; Dedicated logic registers ; 0 ; 0 ;
; -- By type: ; ; ;
; -- Primary logic registers ; 460 / 36960 ( 1 % ) ; 0 / 36960 ( 0 % ) ;
; -- Secondary logic registers ; 47 / 36960 ( < 1 % ) ; 0 / 36960 ( 0 % ) ;
; -- By function: ; ; ;
; -- Design implementation registers ; 462 ; 0 ;
; -- Routing optimization registers ; 45 ; 0 ;
; ; ; ;
; ; ; ;
; Virtual pins ; 0 ; 0 ;
; I/O pins ; 26 ; 0 ;
; I/O registers ; 0 ; 0 ;
; Total block memory bits ; 436288 ; 0 ;
; Total block memory implementation bits ; 563200 ; 0 ;
; M10K block ; 55 / 308 ( 17 % ) ; 0 / 308 ( 0 % ) ;
; Clock enable block ; 5 / 104 ( 4 % ) ; 0 / 104 ( 0 % ) ;
; ; ; ;
; Connections ; ; ;
; -- Input Connections ; 0 ; 0 ;
; -- Registered Input Connections ; 0 ; 0 ;
; -- Output Connections ; 0 ; 0 ;
; -- Registered Output Connections ; 0 ; 0 ;
; ; ; ;
; Internal Connections ; ; ;
; -- Total Connections ; 12219 ; 0 ;
; -- Registered Connections ; 2570 ; 0 ;
; ; ; ;
; External Connections ; ; ;
; -- Top ; 0 ; 0 ;
; -- hard_block:auto_generated_inst ; 0 ; 0 ;
; ; ; ;
; Partition Interface ; ; ;
; -- Input Ports ; 11 ; 0 ;
; -- Output Ports ; 15 ; 0 ;
; -- Bidir Ports ; 0 ; 0 ;
; ; ; ;
; Registered Ports ; ; ;
; -- Registered Input Ports ; 0 ; 0 ;
; -- Registered Output Ports ; 0 ; 0 ;
; ; ; ;
; Port Connectivity ; ; ;
; -- Input Ports driven by GND ; 0 ; 0 ;
; -- Output Ports driven by GND ; 0 ; 0 ;
; -- Input Ports driven by VCC ; 0 ; 0 ;
; -- Output Ports driven by VCC ; 0 ; 0 ;
; -- Input Ports with no Source ; 0 ; 0 ;
; -- Output Ports with no Source ; 0 ; 0 ;
; -- Input Ports with no Fanout ; 0 ; 0 ;
; -- Output Ports with no Fanout ; 0 ; 0 ;
+-------------------------------------------------------------+----------------------+--------------------------------+
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Input Pins ;
+----------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; Name ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Combinational Fan-Out ; Registered Fan-Out ; Global ; PCI I/O Enabled ; Bus Hold ; Weak Pull Up ; I/O Standard ; Termination ; Termination Control Block ; Location assigned by ;
+----------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; CLOCK_50 ; M9 ; 3B ; 22 ; 0 ; 0 ; 137 ; 0 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; KEY[0] ; U7 ; 3A ; 10 ; 0 ; 91 ; 352 ; 0 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; PS2_CLK ; D3 ; 2A ; 0 ; 20 ; 3 ; 23 ; 0 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; PS2_DAT ; G2 ; 2A ; 0 ; 21 ; 3 ; 3 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[0] ; U13 ; 4A ; 33 ; 0 ; 40 ; 2 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[1] ; V13 ; 4A ; 33 ; 0 ; 57 ; 2 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[2] ; T13 ; 4A ; 34 ; 0 ; 0 ; 1 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[6] ; AA14 ; 4A ; 34 ; 0 ; 51 ; 0 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[7] ; AA13 ; 4A ; 34 ; 0 ; 34 ; 0 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[8] ; AB13 ; 4A ; 33 ; 0 ; 91 ; 2 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
; SW[9] ; AB12 ; 4A ; 33 ; 0 ; 74 ; 1 ; 0 ; no ; no ; no ; Off ; 3.3-V LVTTL ; Off ; -- ; User ;
+----------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Output Pins ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; Name ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Output Register ; Slew Rate ; PCI I/O Enabled ; Open Drain ; TRI Primitive ; Bus Hold ; Weak Pull Up ; I/O Standard ; Current Strength ; Termination ; Termination Control Block ; Output Buffer Pre-emphasis ; Voltage Output Differential ; Output Buffer Delay ; Output Buffer Delay Control ; Location assigned by ; Output Enable Source ; Output Enable Group ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; LEDR[8] ; L2 ; 2A ; 0 ; 20 ; 37 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_B[0] ; B6 ; 8A ; 14 ; 45 ; 34 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_B[1] ; B7 ; 8A ; 14 ; 45 ; 51 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_B[2] ; A8 ; 8A ; 12 ; 45 ; 0 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_B[3] ; A7 ; 8A ; 12 ; 45 ; 17 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_G[0] ; L7 ; 8A ; 22 ; 45 ; 34 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_G[1] ; K7 ; 8A ; 22 ; 45 ; 51 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_G[2] ; J7 ; 8A ; 20 ; 45 ; 0 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_G[3] ; J8 ; 8A ; 20 ; 45 ; 17 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_HS ; H8 ; 8A ; 20 ; 45 ; 34 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_R[0] ; A9 ; 8A ; 18 ; 45 ; 51 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_R[1] ; B10 ; 8A ; 16 ; 45 ; 40 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_R[2] ; C9 ; 8A ; 16 ; 45 ; 57 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_R[3] ; A5 ; 8A ; 16 ; 45 ; 74 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
; VGA_VS ; G8 ; 8A ; 20 ; 45 ; 51 ; no ; 1 ; no ; no ; no ; no ; Off ; 3.3-V LVTTL ; 16mA ; Off ; -- ; no ; no ; 0 ; Off ; User ; - ; - ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
+----------------------------------------------------------------------------+
; I/O Bank Usage ;
+----------+------------------+---------------+--------------+---------------+
; I/O Bank ; Usage ; VCCIO Voltage ; VREF Voltage ; VCCPD Voltage ;
+----------+------------------+---------------+--------------+---------------+
; 2A ; 3 / 16 ( 19 % ) ; 3.3V ; -- ; 3.3V ;
; 3A ; 1 / 16 ( 6 % ) ; 3.3V ; -- ; 3.3V ;
; 3B ; 1 / 32 ( 3 % ) ; 3.3V ; -- ; 3.3V ;
; 4A ; 7 / 48 ( 15 % ) ; 3.3V ; -- ; 3.3V ;
; 5A ; 0 / 16 ( 0 % ) ; 3.3V ; -- ; 3.3V ;
; 5B ; 0 / 16 ( 0 % ) ; 3.3V ; -- ; 3.3V ;
; 7A ; 0 / 48 ( 0 % ) ; 3.3V ; -- ; 3.3V ;
; 8A ; 14 / 32 ( 44 % ) ; 3.3V ; -- ; 3.3V ;
+----------+------------------+---------------+--------------+---------------+
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; All Package Pins ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; Location ; Pad Number ; I/O Bank ; Pin Name/Usage ; Dir. ; I/O Standard ; Voltage ; I/O Type ; User Assignment ; Bus Hold ; Weak Pull Up ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; A1 ; ; ; GND ; ; ; ; -- ; ; -- ; -- ;
; A2 ; 288 ; 9A ; ^MSEL2 ; input ; ; ; -- ; ; -- ; -- ;
; A3 ; ; -- ; VCCBAT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
; A4 ; 290 ; 9A ; ^nCONFIG ; input ; ; ; -- ; ; -- ; -- ;
; A5 ; 264 ; 8A ; VGA_R[3] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; A6 ; ; 8A ; VCCIO8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; A7 ; 273 ; 8A ; VGA_B[3] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; A8 ; 271 ; 8A ; VGA_B[2] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; A9 ; 262 ; 8A ; VGA_R[0] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; A10 ; 260 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; A11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; A12 ; 242 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; A13 ; 230 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; A14 ; 218 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; A15 ; 216 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; A16 ; ; 7A ; VCCIO7A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; A17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; A18 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; A19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; A20 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; A21 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; A22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; AA1 ; 29 ; 2A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
; AA2 ; 31 ; 2A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
; AA3 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AA4 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AA5 ; 53 ; 3A ; ^AS_DATA2, DATA2 ; input ; ; ; Weak Pull Up ; ; -- ; On ;
; AA6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AA7 ; 79 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA8 ; 82 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA9 ; 89 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA10 ; 87 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AA12 ; 105 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA13 ; 113 ; 4A ; SW[7] ; input ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; AA14 ; 111 ; 4A ; SW[6] ; input ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; AA15 ; 116 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA16 ; ; 4A ; VCCIO4A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; AA17 ; 127 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA18 ; 129 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA19 ; 130 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA20 ; 132 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AA21 ; ; 4A ; VCCIO4A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; AA22 ; 137 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AB2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AB3 ; 55 ; 3A ; ^AS_DATA1, DATA1 ; input ; ; ; Weak Pull Up ; ; -- ; On ;
; AB4 ; 57 ; 3A ; ^AS_DATA0, ASDO, DATA0 ; input ; ; ; Weak Pull Up ; ; -- ; On ;
; AB5 ; 76 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB6 ; 74 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB7 ; 81 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB8 ; 84 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AB10 ; 98 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB11 ; 100 ; 3B ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB12 ; 108 ; 4A ; SW[9] ; input ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; AB13 ; 106 ; 4A ; SW[8] ; input ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; AB14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AB15 ; 114 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB16 ; ; 4A ; VREFB4AN0 ; power ; ; ; -- ; ; -- ; -- ;
; AB17 ; 119 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB18 ; 121 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; AB20 ; 122 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB21 ; 124 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; AB22 ; 135 ; 4A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; B2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; B3 ; ; ; DNU ; ; ; ; -- ; ; -- ; -- ;
; B4 ; ; ; DNU ; ; ; ; -- ; ; -- ; -- ;
; B5 ; 266 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B6 ; 268 ; 8A ; VGA_B[0] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; B7 ; 270 ; 8A ; VGA_B[1] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; B8 ; ; 8A ; VREFB8AN0 ; power ; ; ; -- ; ; -- ; -- ;
; B9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; B10 ; 263 ; 8A ; VGA_R[1] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; B11 ; 250 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B12 ; 240 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B13 ; 228 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; B15 ; 225 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B16 ; 204 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; B17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; B18 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; B19 ; ; 7A ; VCCIO7A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; B20 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; B21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; B22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; C1 ; 16 ; 2A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
; C2 ; 18 ; 2A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
; C3 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; C4 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; C5 ; 292 ; 9A ; ^GND ; ; ; ; -- ; ; -- ; -- ;
; C6 ; 272 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C7 ; ; 8A ; VCCIO8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; C8 ; 278 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C9 ; 265 ; 8A ; VGA_R[2] ; output ; 3.3-V LVTTL ; ; Column I/O ; Y ; no ; Off ;
; C10 ; ; -- ; VCCPD7A8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; C11 ; 248 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C12 ; ; 7A ; VCCIO7A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; C13 ; 241 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C14 ; ; 7A ; VREFB7AN0 ; power ; ; ; -- ; ; -- ; -- ;
; C15 ; 223 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C16 ; 206 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; C17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; C18 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; C19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; C20 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; C21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
; C22 ; ; 7A ; VCCIO7A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; D2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; D3 ; 22 ; 2A ; PS2_CLK ; input ; 3.3-V LVTTL ; ; Row I/O ; Y ; no ; Off ;
; D4 ; ; 2A ; VCCIO2A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D5 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; D6 ; 274 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; D7 ; 276 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; D8 ; ; -- ; VCCPD7A8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D9 ; 277 ; 8A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; D10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
; D11 ; ; -- ; VCC_AUX ; power ; ; 2.5V ; -- ; ; -- ; -- ;
; D12 ; 247 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; D13 ; 239 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
; D14 ; ; -- ; VCCPD7A8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D15 ; ; 7A ; VCCIO7A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D16 ; ; -- ; VCCPD7A8A ; power ; ; 3.3V ; -- ; ; -- ; -- ;
; D17 ; 207 ; 7A ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;