-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebee1.bdf
5837 lines (5837 loc) · 155 KB
/
firebee1.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-2010 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.
*/
//#pragma file_not_in_maxplusii_format
(header "graphic" (version "1.3"))
(properties
(page_setup "header_footer\nDate: %D\n%f\nProject: %j\n\nPage %p of %P\nRevision: %a\nmargin\n1\n1\n1\n1\norientation\n1\npaper_size\n9\npaper_source\n15\nfit_page_wide\n1\nfit_page_tall\n1\n")
)
(pin
(input)
(rect 208 1392 376 1408)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "FB_ALE" (rect 9 0 60 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 136 1408 192 1424))
)
(pin
(input)
(rect 992 936 1160 952)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_WR" (rect 9 0 66 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 952 1000 968))
)
(pin
(input)
(rect 168 296 336 312)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "CLK33M" (rect 9 0 64 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 104 312 176 328))
)
(pin
(input)
(rect 992 960 1160 976)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_CS1" (rect 5 0 67 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 976 1000 992))
)
(pin
(input)
(rect 992 984 1160 1000)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_CS2" (rect 5 0 67 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 1000 1000 1016))
)
(pin
(input)
(rect 1008 360 1176 376)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_CS3" (rect 5 0 67 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 952 376 1008 392))
)
(pin
(input)
(rect 992 1008 1160 1024)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "FB_SIZE0" (rect 5 0 69 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 1024 1000 1040))
)
(pin
(input)
(rect 992 1032 1160 1048)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "FB_SIZE1" (rect 5 0 69 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 1048 1000 1064))
)
(pin
(input)
(rect 992 1056 1160 1072)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_BURST" (rect 5 0 87 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 1072 1000 1088))
)
(pin
(input)
(rect 936 1168 1104 1184)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "LP_BUSY" (rect 5 0 68 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1184 952 1200))
)
(pin
(input)
(rect 856 1200 1024 1216)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nACSI_DRQ" (rect 5 0 85 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 808 1216 864 1232))
)
(pin
(input)
(rect 856 1224 1024 1240)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nACSI_INT" (rect 5 0 75 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 808 1240 864 1256))
)
(pin
(input)
(rect 936 1392 1104 1408)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "RxD" (rect 5 0 32 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1408 944 1424))
)
(pin
(input)
(rect 936 1416 1104 1432)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "CTS" (rect 5 0 33 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1432 944 1448))
)
(pin
(input)
(rect 936 1440 1104 1456)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "RI" (rect 5 0 19 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1456 944 1472))
)
(pin
(input)
(rect 936 1464 1104 1480)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "DCD" (rect 5 0 36 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1480 944 1496))
)
(pin
(input)
(rect 608 1488 776 1504)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "AMKB_RX" (rect 5 0 69 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 560 1504 616 1520))
)
(pin
(input)
(rect 608 1512 776 1528)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "PIC_AMKB_RX" (rect 5 0 101 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 560 1528 616 1544))
)
(pin
(input)
(rect 936 1544 1104 1560)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "IDE_RDY" (rect 5 0 66 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1560 944 1576))
)
(pin
(input)
(rect 936 1568 1104 1584)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "IDE_INT" (rect 5 0 59 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1584 944 1600))
)
(pin
(input)
(rect 936 1592 1104 1608)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "WP_CF_CARD" (rect 5 0 102 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1608 944 1624))
)
(pin
(input)
(rect 872 1672 1040 1688)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "TRACK00" (rect 5 0 68 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1688 880 1704))
)
(pin
(input)
(rect 872 1696 1040 1712)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nWP" (rect 5 0 35 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1712 880 1728))
)
(pin
(input)
(rect 872 1744 1040 1760)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nDCHG" (rect 5 0 55 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1760 880 1776))
)
(pin
(input)
(rect 936 1776 1104 1792)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "SD_DATA0" (rect 5 0 76 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1792 944 1808))
)
(pin
(input)
(rect 936 1800 1104 1816)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "SD_DATA1" (rect 5 0 76 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1816 944 1832))
)
(pin
(input)
(rect 936 1824 1104 1840)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "SD_DATA2" (rect 5 0 76 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1840 944 1856))
)
(pin
(input)
(rect 936 1848 1128 1864)
(text "INPUT" (rect 157 0 193 13)(font "Arial" (font_size 6)))
(text "SD_CARD_DEDECT" (rect 5 0 140 15)(font "Arial" ))
(pt 192 8)
(drawing
(line (pt 116 12)(pt 141 12)(line_width 1))
(line (pt 116 4)(pt 141 4)(line_width 1))
(line (pt 145 8)(pt 192 8)(line_width 1))
(line (pt 116 12)(pt 116 4)(line_width 1))
(line (pt 141 4)(pt 145 8)(line_width 1))
(line (pt 141 12)(pt 145 8)(line_width 1))
)
(text "VCC" (rect 160 7 184 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1864 952 1880))
)
(pin
(input)
(rect 872 1360 1040 1376)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "MIDI_IN" (rect 5 0 55 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1376 880 1392))
)
(pin
(input)
(rect 936 1256 1104 1272)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nSCSI_DRQ" (rect 5 0 86 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1272 944 1288))
)
(pin
(input)
(rect 936 1872 1104 1888)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "SD_WP" (rect 5 0 55 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 880 1888 952 1904))
)
(pin
(input)
(rect 872 1720 1040 1736)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nRD_DATA" (rect 5 0 78 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1736 880 1752))
)
(pin
(input)
(rect 936 1280 1104 1296)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nSCSI_C_D" (rect 5 0 84 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1296 944 1312))
)
(pin
(input)
(rect 936 1304 1104 1320)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nSCSI_I_O" (rect 5 0 76 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1320 944 1336))
)
(pin
(input)
(rect 936 1328 1104 1344)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nSCSI_MSG" (rect 5 0 85 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 888 1344 944 1360))
)
(pin
(input)
(rect 992 1104 1160 1120)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nDACK0" (rect 5 0 60 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 936 1120 1000 1136))
)
(pin
(input)
(rect 984 2592 1152 2608)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "PIC_INT" (rect 5 0 59 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 928 2608 1000 2624))
)
(pin
(input)
(rect 992 912 1160 928)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nFB_OE" (rect 5 0 59 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 944 928 1000 944))
)
(pin
(input)
(rect 360 2616 528 2632)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "TOUT0" (rect 5 0 51 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 304 2632 368 2648))
)
(pin
(input)
(rect 360 2504 528 2520)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nMASTER" (rect 5 0 69 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 304 2520 368 2536))
)
(pin
(input)
(rect 984 2640 1152 2656)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "DVI_INT" (rect 5 0 58 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 928 2656 992 2672))
)
(pin
(input)
(rect 360 2408 528 2424)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nDACK1" (rect 5 0 60 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 304 2424 368 2440))
)
(pin
(input)
(rect 984 2664 1152 2680)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nPCI_INTD" (rect 5 0 78 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 936 2680 992 2696))
)
(pin
(input)
(rect 984 2688 1152 2704)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nPCI_INTC" (rect 5 0 78 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 936 2704 992 2720))
)
(pin
(input)
(rect 984 2712 1152 2728)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nPCI_INTB" (rect 5 0 76 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 936 2728 992 2744))
)
(pin
(input)
(rect 984 2736 1152 2752)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nPCI_INTA" (rect 5 0 75 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 928 2752 1000 2768))
)
(pin
(input)
(rect 984 2616 1152 2632)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "E0_INT" (rect 5 0 53 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 928 2632 992 2648))
)
(pin
(input)
(rect 872 1648 1040 1664)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "nINDEX" (rect 5 0 55 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 816 1664 880 1680))
)
(pin
(input)
(rect 872 1624 1040 1640)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "HD_DD" (rect 5 0 55 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 808 1632 872 1648))
)
(pin
(input)
(rect 96 -288 264 -272)
(text "INPUT" (rect 133 0 169 13)(font "Arial" (font_size 6)))
(text "MAIN_CLK" (rect 9 0 78 15)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 92 12)(pt 117 12)(line_width 1))
(line (pt 92 4)(pt 117 4)(line_width 1))
(line (pt 121 8)(pt 168 8)(line_width 1))
(line (pt 92 12)(pt 92 4)(line_width 1))
(line (pt 117 4)(pt 121 8)(line_width 1))
(line (pt 117 12)(pt 121 8)(line_width 1))
)
(text "VCC" (rect 136 7 160 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 56 -304 120 -288))
)
(pin
(input)
(rect 664 440 840 456)
(text "INPUT" (rect 141 0 177 13)(font "Arial" (font_size 6)))
(text "nRSTO_MCF" (rect 5 0 89 15)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 100 12)(pt 125 12)(line_width 1))
(line (pt 100 4)(pt 125 4)(line_width 1))
(line (pt 129 8)(pt 176 8)(line_width 1))
(line (pt 100 12)(pt 100 4)(line_width 1))
(line (pt 125 4)(pt 129 8)(line_width 1))
(line (pt 125 12)(pt 129 8)(line_width 1))
)
(text "VCC" (rect 144 7 168 20)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 600 448 664 464))
)
(pin
(output)
(rect 864 288 1040 304)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "CLK24M576" (rect 90 0 170 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 1040 304 1112 320))
)
(pin
(output)
(rect 1832 832 2008 848)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "LP_STR" (rect 90 0 144 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 2008 840 2064 856))
)
(pin
(output)
(rect 1832 936 2008 952)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "nACSI_ACK" (rect 90 0 166 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 2008 952 2072 968))
)
(pin
(output)
(rect 1832 960 2008 976)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "nACSI_RESET" (rect 90 0 185 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 2008 976 2072 992))
)
(pin
(output)
(rect 1832 984 2008 1000)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "nACSI_CS" (rect 90 0 158 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 2008 1000 2072 1016))
)
(pin
(output)
(rect 1832 1008 2008 1024)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "ACSI_DIR" (rect 90 0 154 15)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8)(line_width 1))
(line (pt 52 4)(pt 78 4)(line_width 1))
(line (pt 52 12)(pt 78 12)(line_width 1))
(line (pt 52 12)(pt 52 4)(line_width 1))
(line (pt 78 4)(pt 82 8)(line_width 1))
(line (pt 82 8)(pt 78 12)(line_width 1))
(line (pt 78 12)(pt 82 8)(line_width 1))
)
(annotation_block (location)(rect 2008 1024 2064 1040))
)
(pin
(output)
(rect 1832 1032 2008 1048)
(text "OUTPUT" (rect 1 0 51 13)(font "Arial" (font_size 6)))
(text "ACSI_A1" (rect 90 0 146 15)(font "Arial" ))
(pt 0 8)