-
Notifications
You must be signed in to change notification settings - Fork 24
/
lms7_trx_top.bdf
7850 lines (7850 loc) · 190 KB
/
lms7_trx_top.bdf
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
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2016 Altera Corporation. All rights reserved.
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, the Altera Quartus Prime License Agreement,
the 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.
*/
(header "graphic" (version "1.4"))
(pin
(input)
(rect -992 720 -824 736)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "EXT_GND" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1048 736 -992 752))
)
(pin
(input)
(rect -992 920 -824 936)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "LMS_MCLK2" (rect 5 0 79 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1048 936 -992 952))
)
(pin
(input)
(rect -992 944 -824 960)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "LMS_MCLK1" (rect 5 0 79 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1048 960 -992 976))
)
(pin
(input)
(rect 1008 3336 1224 3352)
(text "INPUT" (rect 173 0 214 11)(font "Arial" (font_size 6)))
(text "PCIE_HSO[3..0]" (rect 5 0 120 14)(font "Arial" ))
(pt 216 8)
(drawing
(line (pt 132 12)(pt 157 12))
(line (pt 132 4)(pt 157 4))
(line (pt 161 8)(pt 216 8))
(line (pt 132 12)(pt 132 4))
(line (pt 157 4)(pt 161 8))
(line (pt 157 12)(pt 161 8))
)
(text "VCC" (rect 176 7 200 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 928 3336 1008 3352))
)
(pin
(input)
(rect 1040 3320 1224 3336)
(text "INPUT" (rect 141 0 182 11)(font "Arial" (font_size 6)))
(text "PCIE_REFCLK" (rect 5 0 95 14)(font "Arial" ))
(pt 184 8)
(drawing
(line (pt 100 12)(pt 125 12))
(line (pt 100 4)(pt 125 4))
(line (pt 129 8)(pt 184 8))
(line (pt 100 12)(pt 100 4))
(line (pt 125 4)(pt 129 8))
(line (pt 125 12)(pt 129 8))
)
(text "VCC" (rect 144 7 168 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 952 3320 1040 3336))
)
(pin
(input)
(rect 1040 3304 1224 3320)
(text "INPUT" (rect 141 0 182 11)(font "Arial" (font_size 6)))
(text "PCIE_PERSTn" (rect 5 0 95 14)(font "Arial" ))
(pt 184 8)
(drawing
(line (pt 100 12)(pt 125 12))
(line (pt 100 4)(pt 125 4))
(line (pt 129 8)(pt 184 8))
(line (pt 100 12)(pt 100 4))
(line (pt 125 4)(pt 129 8))
(line (pt 125 12)(pt 129 8))
)
(text "VCC" (rect 144 7 168 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 952 3304 1040 3320))
)
(pin
(input)
(rect -584 3136 -400 3152)
(text "INPUT" (rect 141 0 182 11)(font "Arial" (font_size 6)))
(text "CLK100_FPGA" (rect 5 0 95 14)(font "Arial" ))
(pt 184 8)
(drawing
(line (pt 100 12)(pt 125 12))
(line (pt 100 4)(pt 125 4))
(line (pt 129 8)(pt 184 8))
(line (pt 100 12)(pt 100 4))
(line (pt 125 4)(pt 129 8))
(line (pt 125 12)(pt 129 8))
)
(text "VCC" (rect 144 7 168 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -680 3152 -584 3176))
)
(pin
(input)
(rect -608 3216 -400 3232)
(text "INPUT" (rect 165 0 206 11)(font "Arial" (font_size 6)))
(text "FPGA_AS_DATA0" (rect 5 0 112 14)(font "Arial" ))
(pt 208 8)
(drawing
(line (pt 124 12)(pt 149 12))
(line (pt 124 4)(pt 149 4))
(line (pt 153 8)(pt 208 8))
(line (pt 124 12)(pt 124 4))
(line (pt 149 4)(pt 153 8))
(line (pt 149 12)(pt 153 8))
)
(text "VCC" (rect 168 7 192 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -688 3200 -608 3232))
)
(pin
(input)
(rect -992 3392 -776 3408)
(text "INPUT" (rect 173 0 214 11)(font "Arial" (font_size 6)))
(text "FPGA_SPI0_MISO" (rect 5 0 120 14)(font "Arial" ))
(pt 216 8)
(drawing
(line (pt 132 12)(pt 157 12))
(line (pt 132 4)(pt 157 4))
(line (pt 161 8)(pt 216 8))
(line (pt 132 12)(pt 132 4))
(line (pt 157 4)(pt 161 8))
(line (pt 157 12)(pt 161 8))
)
(text "VCC" (rect 176 7 200 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -904 3408 -816 3424))
)
(pin
(input)
(rect 16 1080 184 1096)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "LM75_OS" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -72 1096 16 1128))
)
(pin
(input)
(rect -896 1832 -720 1848)
(text "INPUT" (rect 133 0 174 11)(font "Arial" (font_size 6)))
(text "HW_VER[3..0]" (rect 5 0 104 14)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 92 12)(pt 117 12))
(line (pt 92 4)(pt 117 4))
(line (pt 121 8)(pt 176 8))
(line (pt 92 12)(pt 92 4))
(line (pt 117 4)(pt 121 8))
(line (pt 117 12)(pt 121 8))
)
(text "VCC" (rect 136 7 160 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1000 1832 -944 1848))
)
(pin
(input)
(rect -928 1848 -720 1864)
(text "INPUT" (rect 165 0 206 11)(font "Arial" (font_size 6)))
(text "BOM_VER[3..0]" (rect 5 0 112 14)(font "Arial" ))
(pt 208 8)
(drawing
(line (pt 124 12)(pt 149 12))
(line (pt 124 4)(pt 149 4))
(line (pt 153 8)(pt 208 8))
(line (pt 124 12)(pt 124 4))
(line (pt 149 4)(pt 153 8))
(line (pt 149 12)(pt 153 8))
)
(text "VCC" (rect 168 7 192 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1000 1848 -944 1864))
)
(pin
(input)
(rect -992 1008 -824 1024)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "LMK_CLK" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1072 1024 -992 1056))
)
(pin
(input)
(rect -1000 1128 -832 1144)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK3" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1144 -1000 1176))
)
(pin
(input)
(rect -1000 1176 -832 1192)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK6" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1192 -1000 1224))
)
(pin
(input)
(rect -144 792 32 808)
(text "INPUT" (rect 133 0 174 11)(font "Arial" (font_size 6)))
(text "ADF_MUXOUT" (rect 5 0 87 14)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 92 12)(pt 117 12))
(line (pt 92 4)(pt 117 4))
(line (pt 121 8)(pt 176 8))
(line (pt 92 12)(pt 92 4))
(line (pt 117 4)(pt 121 8))
(line (pt 117 12)(pt 121 8))
)
(text "VCC" (rect 136 7 160 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -232 808 -144 840))
)
(pin
(input)
(rect -1024 768 -824 784)
(text "INPUT" (rect 157 0 198 11)(font "Arial" (font_size 6)))
(text "CLK50_FPGA_1" (rect 5 0 104 14)(font "Arial" ))
(pt 200 8)
(drawing
(line (pt 116 12)(pt 141 12))
(line (pt 116 4)(pt 141 4))
(line (pt 145 8)(pt 200 8))
(line (pt 116 12)(pt 116 4))
(line (pt 141 4)(pt 145 8))
(line (pt 141 12)(pt 145 8))
)
(text "VCC" (rect 160 7 184 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1048 784 -992 800))
)
(pin
(input)
(rect -1000 1056 -832 1072)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK0" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1072 -1000 1104))
)
(pin
(input)
(rect -1000 1080 -832 1096)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK1" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1096 -1000 1128))
)
(pin
(input)
(rect -1000 1104 -832 1120)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK2" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1120 -1000 1152))
)
(pin
(input)
(rect -1000 1152 -832 1168)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK5" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1128 -1000 1160))
)
(pin
(input)
(rect -1000 1200 -832 1216)
(text "INPUT" (rect 125 0 166 11)(font "Arial" (font_size 6)))
(text "SI_CLK7" (rect 5 0 62 14)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "VCC" (rect 128 7 152 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -1088 1216 -1000 1248))
)
(pin
(input)
(rect 1040 3288 1224 3304)
(text "INPUT" (rect 141 0 182 11)(font "Arial" (font_size 6)))
(text "CLK125_FPGA" (rect 5 0 95 14)(font "Arial" ))
(pt 184 8)
(drawing
(line (pt 100 12)(pt 125 12))
(line (pt 100 4)(pt 125 4))
(line (pt 129 8)(pt 184 8))
(line (pt 100 12)(pt 100 4))
(line (pt 125 4)(pt 129 8))
(line (pt 125 12)(pt 129 8))
)
(text "VCC" (rect 144 7 168 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 960 3304 1040 3336))
)
(pin
(input)
(rect 1864 2192 2064 2208)
(text "INPUT" (rect 157 0 198 11)(font "Arial" (font_size 6)))
(text "LMS_DIQ2_D[11..0]" (rect 5 0 145 14)(font "Arial" ))
(pt 200 8)
(drawing
(line (pt 116 12)(pt 141 12))
(line (pt 116 4)(pt 141 4))
(line (pt 145 8)(pt 200 8))
(line (pt 116 12)(pt 116 4))
(line (pt 141 4)(pt 145 8))
(line (pt 141 12)(pt 145 8))
)
(text "VCC" (rect 160 7 184 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 1792 2200 1848 2216))
)
(pin
(input)
(rect 1872 2208 2064 2224)
(text "INPUT" (rect 149 0 190 11)(font "Arial" (font_size 6)))
(text "LMS_DIQ2_IQSEL2" (rect 5 0 128 14)(font "Arial" ))
(pt 192 8)
(drawing
(line (pt 108 12)(pt 133 12))
(line (pt 108 4)(pt 133 4))
(line (pt 137 8)(pt 192 8))
(line (pt 108 12)(pt 108 4))
(line (pt 133 4)(pt 137 8))
(line (pt 133 12)(pt 137 8))
)
(text "VCC" (rect 152 7 176 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 1792 2216 1848 2232))
)
(pin
(input)
(rect -232 952 -24 968)
(text "INPUT" (rect 165 0 206 11)(font "Arial" (font_size 6)))
(text "FPGA_SW[3..0]" (rect 5 0 112 14)(font "Arial" ))
(pt 208 8)
(drawing
(line (pt 124 12)(pt 149 12))
(line (pt 124 4)(pt 149 4))
(line (pt 153 8)(pt 208 8))
(line (pt 124 12)(pt 124 4))
(line (pt 149 4)(pt 153 8))
(line (pt 149 12)(pt 153 8))
)
(text "VCC" (rect 168 7 192 18)(font "Arial" (font_size 6)))
(annotation_block (location)(rect -320 968 -232 1000))
)
(pin
(output)
(rect -624 2320 -448 2336)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "LMS_RESET" (rect 90 0 164 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -432 2320 -376 2336))
)
(pin
(output)
(rect 360 760 536 776)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED2_G" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 536 776 584 792))
)
(pin
(output)
(rect 360 776 536 792)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED2_R" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 536 792 584 808))
)
(pin
(output)
(rect 360 624 546 640)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED1_R" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 544 624 600 640))
)
(pin
(output)
(rect 360 608 546 624)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED1_G" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 544 608 592 624))
)
(pin
(output)
(rect 240 3744 468 3760)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_SPI1_DAC_SS" (rect 90 0 222 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 480 3744 568 3760))
)
(pin
(output)
(rect 240 3768 468 3784)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_SPI1_ADF_SS" (rect 90 0 222 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 480 3768 568 3784))
)
(pin
(output)
(rect 240 3800 451 3816)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_SPI1_SCLK" (rect 90 0 205 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 480 3800 568 3816))
)
(pin
(output)
(rect 240 3840 451 3856)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_SPI1_MOSI" (rect 90 0 205 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 480 3840 568 3856))
)
(pin
(output)
(rect 320 1288 496 1304)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED3" (rect 90 0 164 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 496 1304 584 1336))
)
(pin
(output)
(rect 320 1304 496 1320)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED4" (rect 90 0 164 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 496 1320 584 1352))
)
(pin
(output)
(rect 320 1320 496 1336)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED5" (rect 90 0 164 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 496 1336 584 1368))
)
(pin
(output)
(rect 320 1336 496 1352)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FPGA_LED6" (rect 90 0 164 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 496 1352 584 1384))
)
(pin
(output)
(rect 2016 3288 2252 3304)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "PCIE_HSI_IC[3..0]" (rect 90 0 230 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 2252 3304 2332 3336))
)
(pin
(output)
(rect 408 1096 584 1112)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "FAN_CTRL" (rect 90 0 156 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 536 1112 624 1144))
)
(pin
(output)
(rect 2800 4344 2995 4360)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "LMS_DIQ1_D[11..0]" (rect 90 0 230 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 3008 4344 3064 4360))
)
(pin
(output)
(rect 2800 4360 2986 4376)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "LMS_DIQ1_IQSEL" (rect 90 0 205 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 3008 4368 3080 4392))
)
(pin
(output)
(rect -904 2376 -728 2392)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX2_2_LB_L" (rect 90 0 172 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -712 2376 -656 2392))
)
(pin
(output)
(rect -904 2400 -728 2416)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX2_2_LB_H" (rect 90 0 172 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -712 2400 -656 2416))
)
(pin
(output)
(rect -904 2488 -728 2504)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX2_2_LB_SH" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -712 2488 -656 2504))
)
(pin
(output)
(rect -864 2744 -688 2760)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX1_2_LB_L" (rect 90 0 172 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -672 2744 -616 2760))
)
(pin
(output)
(rect -864 2768 -688 2784)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX1_2_LB_H" (rect 90 0 172 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -672 2768 -616 2784))
)
(pin
(output)
(rect -864 2856 -688 2872)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "TX1_2_LB_SH" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect -672 2856 -616 2872))
)
(pin
(output)
(rect 1424 4608 1603 4624)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_odt[0..0]" (rect 90 0 222 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1632 4616 1688 4632))
)
(pin
(output)
(rect 1424 4624 1612 4640)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_cs_n[0..0]" (rect 90 0 230 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1633 4632 1689 4648))
)
(pin
(output)
(rect 1424 4640 1606 4656)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_cke[0..0]" (rect 90 0 222 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1635 4648 1691 4664))
)
(pin
(output)
(rect 1424 4656 1615 4672)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_addr[12..0]" (rect 90 0 238 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1636 4664 1692 4680))
)
(pin
(output)
(rect 1424 4688 1600 4704)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_ras_n" (rect 90 0 189 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1637 4696 1693 4712))
)
(pin
(output)
(rect 1424 4704 1600 4720)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_cas_n" (rect 90 0 189 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1637 4712 1693 4728))
)
(pin
(output)
(rect 1424 4720 1600 4736)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_we_n" (rect 90 0 180 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1637 4728 1693 4744))
)
(pin
(output)
(rect 1424 4736 1603 4752)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_dm[1..0]" (rect 90 0 213 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1637 4744 1693 4760))
)
(pin
(output)
(rect 1424 4672 1606 4688)
(text "OUTPUT" (rect 1 0 50 11)(font "Arial" (font_size 6)))
(text "DDR2_1_ba[2..0]" (rect 90 0 213 14)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))