-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecoder.bdf
1146 lines (1146 loc) · 29.4 KB
/
Decoder.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"))
(pin
(input)
(rect 336 -80 352 88)
(text "INPUT" (rect 6 133 16 161)(font "Arial" (font_size 6))(vertical))
(text "In0" (rect 5 5 17 20)(font "Arial" )(vertical))
(pt 8 168)
(drawing
(line (pt 4 92)(pt 4 117)(line_width 1))
(line (pt 12 92)(pt 12 117)(line_width 1))
(line (pt 8 121)(pt 8 168)(line_width 1))
(line (pt 4 92)(pt 12 92)(line_width 1))
(line (pt 12 117)(pt 8 121)(line_width 1))
(line (pt 4 117)(pt 8 121)(line_width 1))
)
(rotate270)
(text "VCC" (rect -1 136 9 156)(font "Arial" (font_size 6))(vertical))
)
(pin
(input)
(rect 304 -80 320 88)
(text "INPUT" (rect 6 133 16 161)(font "Arial" (font_size 6))(vertical))
(text "In1" (rect 5 5 17 20)(font "Arial" )(vertical))
(pt 8 168)
(drawing
(line (pt 4 92)(pt 4 117)(line_width 1))
(line (pt 12 92)(pt 12 117)(line_width 1))
(line (pt 8 121)(pt 8 168)(line_width 1))
(line (pt 4 92)(pt 12 92)(line_width 1))
(line (pt 12 117)(pt 8 121)(line_width 1))
(line (pt 4 117)(pt 8 121)(line_width 1))
)
(rotate270)
(text "VCC" (rect -1 136 9 156)(font "Arial" (font_size 6))(vertical))
)
(pin
(input)
(rect 272 -80 288 88)
(text "INPUT" (rect 6 133 16 161)(font "Arial" (font_size 6))(vertical))
(text "In2" (rect 5 5 17 20)(font "Arial" )(vertical))
(pt 8 168)
(drawing
(line (pt 4 92)(pt 4 117)(line_width 1))
(line (pt 12 92)(pt 12 117)(line_width 1))
(line (pt 8 121)(pt 8 168)(line_width 1))
(line (pt 4 92)(pt 12 92)(line_width 1))
(line (pt 12 117)(pt 8 121)(line_width 1))
(line (pt 4 117)(pt 8 121)(line_width 1))
)
(rotate270)
(text "VCC" (rect -1 136 9 156)(font "Arial" (font_size 6))(vertical))
)
(pin
(input)
(rect 240 -80 256 88)
(text "INPUT" (rect 6 133 16 161)(font "Arial" (font_size 6))(vertical))
(text "In3" (rect 5 5 17 20)(font "Arial" )(vertical))
(pt 8 168)
(drawing
(line (pt 4 92)(pt 4 117)(line_width 1))
(line (pt 12 92)(pt 12 117)(line_width 1))
(line (pt 8 121)(pt 8 168)(line_width 1))
(line (pt 4 92)(pt 12 92)(line_width 1))
(line (pt 12 117)(pt 8 121)(line_width 1))
(line (pt 4 117)(pt 8 121)(line_width 1))
)
(rotate270)
(text "VCC" (rect -1 136 9 156)(font "Arial" (font_size 6))(vertical))
)
(pin
(input)
(rect 208 -80 224 88)
(text "INPUT" (rect 6 133 16 161)(font "Arial" (font_size 6))(vertical))
(text "In4" (rect 5 5 17 20)(font "Arial" )(vertical))
(pt 8 168)
(drawing
(line (pt 4 92)(pt 4 117)(line_width 1))
(line (pt 12 92)(pt 12 117)(line_width 1))
(line (pt 8 121)(pt 8 168)(line_width 1))
(line (pt 4 92)(pt 12 92)(line_width 1))
(line (pt 12 117)(pt 8 121)(line_width 1))
(line (pt 4 117)(pt 8 121)(line_width 1))
)
(rotate270)
(text "VCC" (rect -1 136 9 156)(font "Arial" (font_size 6))(vertical))
)
(pin
(output)
(rect 744 384 760 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LA" (rect 4 90 16 102)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 704 384 720 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LB" (rect 4 90 16 102)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 664 384 680 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LC" (rect 4 90 16 104)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 624 384 640 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LD" (rect 4 90 16 104)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 584 384 600 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LE" (rect 4 90 16 102)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 544 384 560 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LF" (rect 4 90 16 102)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 504 384 520 560)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "LG" (rect 4 90 16 104)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 744 776 760 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RA" (rect 4 90 16 105)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 704 776 720 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RB" (rect 4 90 16 105)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 664 776 680 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RC" (rect 4 90 16 106)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 624 776 640 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RD" (rect 4 90 16 106)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 584 776 600 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RE" (rect 4 90 16 105)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 544 776 560 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RF" (rect 4 90 16 105)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(pin
(output)
(rect 504 776 520 952)
(text "OUTPUT" (rect 6 1 16 39)(font "Arial" (font_size 6))(vertical))
(text "RG" (rect 4 90 16 106)(font "Arial" )(vertical))
(pt 8 0)
(drawing
(line (pt 8 0)(pt 8 52)(line_width 1))
(line (pt 12 52)(pt 12 78)(line_width 1))
(line (pt 4 52)(pt 4 78)(line_width 1))
(line (pt 4 52)(pt 12 52)(line_width 1))
(line (pt 12 78)(pt 8 82)(line_width 1))
(line (pt 8 82)(pt 4 78)(line_width 1))
(line (pt 4 78)(pt 8 82)(line_width 1))
)
(rotate270)
)
(symbol
(rect 368 552 464 712)
(text "R-DECOD" (rect 5 0 59 14)(font "Arial" (font_size 8)))
(text "inst" (rect 8 144 25 156)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "IN0" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN0" (rect 21 27 38 41)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "IN1" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN1" (rect 21 43 38 57)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "IN2" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN2" (rect 21 59 38 73)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "IN3" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN3" (rect 21 75 38 89)(font "Arial" (font_size 8)))
(line (pt 0 80)(pt 16 80)(line_width 1))
)
(port
(pt 0 96)
(input)
(text "IN4" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN4" (rect 21 91 38 105)(font "Arial" (font_size 8)))
(line (pt 0 96)(pt 16 96)(line_width 1))
)
(port
(pt 96 32)
(output)
(text "OutA" (rect 0 0 29 14)(font "Arial" (font_size 8)))
(text "OutA" (rect 46 27 75 41)(font "Arial" (font_size 8)))
(line (pt 96 32)(pt 80 32)(line_width 1))
)
(port
(pt 96 48)
(output)
(text "OutB" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutB" (rect 47 43 75 57)(font "Arial" (font_size 8)))
(line (pt 96 48)(pt 80 48)(line_width 1))
)
(port
(pt 96 64)
(output)
(text "OutC" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutC" (rect 47 59 75 73)(font "Arial" (font_size 8)))
(line (pt 96 64)(pt 80 64)(line_width 1))
)
(port
(pt 96 80)
(output)
(text "OutD" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutD" (rect 47 75 75 89)(font "Arial" (font_size 8)))
(line (pt 96 80)(pt 80 80)(line_width 1))
)
(port
(pt 96 96)
(output)
(text "OutE" (rect 0 0 27 14)(font "Arial" (font_size 8)))
(text "OutE" (rect 48 91 75 105)(font "Arial" (font_size 8)))
(line (pt 96 96)(pt 80 96)(line_width 1))
)
(port
(pt 96 112)
(output)
(text "OutF" (rect 0 0 27 14)(font "Arial" (font_size 8)))
(text "OutF" (rect 48 107 75 121)(font "Arial" (font_size 8)))
(line (pt 96 112)(pt 80 112)(line_width 1))
)
(port
(pt 96 128)
(output)
(text "OutG" (rect 0 0 29 14)(font "Arial" (font_size 8)))
(text "OutG" (rect 46 123 75 137)(font "Arial" (font_size 8)))
(line (pt 96 128)(pt 80 128)(line_width 1))
)
(drawing
(rectangle (rect 16 16 80 144)(line_width 1))
)
)
(symbol
(rect 376 144 472 304)
(text "L-DECOD" (rect 5 0 58 14)(font "Arial" (font_size 8)))
(text "inst1" (rect 8 144 31 156)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "IN0" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN0" (rect 21 27 38 41)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "IN1" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN1" (rect 21 43 38 57)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "IN2" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN2" (rect 21 59 38 73)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "IN3" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN3" (rect 21 75 38 89)(font "Arial" (font_size 8)))
(line (pt 0 80)(pt 16 80)(line_width 1))
)
(port
(pt 0 96)
(input)
(text "IN4" (rect 0 0 17 14)(font "Arial" (font_size 8)))
(text "IN4" (rect 21 91 38 105)(font "Arial" (font_size 8)))
(line (pt 0 96)(pt 16 96)(line_width 1))
)
(port
(pt 96 32)
(output)
(text "OutA" (rect 0 0 29 14)(font "Arial" (font_size 8)))
(text "OutA" (rect 46 27 75 41)(font "Arial" (font_size 8)))
(line (pt 96 32)(pt 80 32)(line_width 1))
)
(port
(pt 96 48)
(output)
(text "OutB" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutB" (rect 47 43 75 57)(font "Arial" (font_size 8)))
(line (pt 96 48)(pt 80 48)(line_width 1))
)
(port
(pt 96 64)
(output)
(text "OutC" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutC" (rect 47 59 75 73)(font "Arial" (font_size 8)))
(line (pt 96 64)(pt 80 64)(line_width 1))
)
(port
(pt 96 80)
(output)
(text "OutD" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "OutD" (rect 47 75 75 89)(font "Arial" (font_size 8)))
(line (pt 96 80)(pt 80 80)(line_width 1))
)
(port
(pt 96 96)
(output)
(text "OutE" (rect 0 0 27 14)(font "Arial" (font_size 8)))
(text "OutE" (rect 48 91 75 105)(font "Arial" (font_size 8)))
(line (pt 96 96)(pt 80 96)(line_width 1))
)
(port
(pt 96 112)
(output)
(text "OutF" (rect 0 0 27 14)(font "Arial" (font_size 8)))
(text "OutF" (rect 48 107 75 121)(font "Arial" (font_size 8)))
(line (pt 96 112)(pt 80 112)(line_width 1))
)
(port
(pt 96 128)
(output)
(text "OutG" (rect 0 0 29 14)(font "Arial" (font_size 8)))
(text "OutG" (rect 46 123 75 137)(font "Arial" (font_size 8)))
(line (pt 96 128)(pt 80 128)(line_width 1))
)
(drawing
(rectangle (rect 16 16 80 144)(line_width 1))
)
)
(symbol
(rect 496 304 528 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst2" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 536 304 568 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst3" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 576 304 608 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst4" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 616 304 648 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst5" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 656 304 688 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst6" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 696 304 728 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst7" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 736 304 768 352)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst8" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 496 704 528 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst9" (rect -1 3 11 26)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 536 704 568 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst10" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 576 704 608 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst11" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 616 704 648 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst12" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 656 704 688 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst13" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 696 704 728 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst14" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(symbol
(rect 736 704 768 752)
(text "NOT" (rect 22 1 32 21)(font "Arial" (font_size 6))(vertical))
(text "inst15" (rect -1 3 11 32)(font "Arial" )(vertical))
(port
(pt 16 0)
(input)
(text "IN" (rect 2 7 13 19)(font "Courier New" (bold))(invisible))
(text "IN" (rect 13 2 25 13)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 0)(pt 16 13)(line_width 1))
)
(port
(pt 16 48)
(output)
(text "OUT" (rect 32 7 49 19)(font "Courier New" (bold))(invisible))
(text "OUT" (rect 13 32 25 49)(font "Courier New" (bold))(vertical)(invisible))
(line (pt 16 39)(pt 16 48)(line_width 1))
)
(drawing
(line (pt 7 13)(pt 25 13)(line_width 1))
(line (pt 25 13)(pt 16 31)(line_width 1))
(line (pt 7 13)(pt 16 31)(line_width 1))
(circle (rect 12 31 20 39)(line_width 1))
)
(rotate270)
)
(connector
(pt 344 176)
(pt 376 176)
)
(connector
(pt 312 192)
(pt 376 192)
)
(connector
(pt 280 208)
(pt 376 208)
)
(connector
(pt 216 240)
(pt 376 240)
)
(connector
(pt 248 224)
(pt 376 224)
)
(connector
(pt 344 584)
(pt 368 584)
)
(connector
(pt 312 600)
(pt 368 600)
)
(connector
(pt 280 616)
(pt 368 616)
)
(connector
(pt 216 648)
(pt 368 648)
)
(connector
(pt 248 632)
(pt 368 632)
)
(connector
(pt 344 88)
(pt 344 176)
)
(connector
(pt 344 176)
(pt 344 584)
)
(connector
(pt 312 88)
(pt 312 192)
)
(connector
(pt 312 192)
(pt 312 600)
)
(connector
(pt 280 88)
(pt 280 208)
)
(connector
(pt 280 208)
(pt 280 616)
)
(connector
(pt 216 88)
(pt 216 240)
)
(connector
(pt 216 240)
(pt 216 648)
)
(connector
(pt 248 88)
(pt 248 224)
)
(connector
(pt 248 224)
(pt 248 632)
)
(connector
(pt 472 272)
(pt 512 272)
)
(connector
(pt 752 352)
(pt 752 384)
)
(connector
(pt 712 352)
(pt 712 384)
)
(connector
(pt 672 352)
(pt 672 384)
)
(connector
(pt 632 352)
(pt 632 384)
)
(connector
(pt 592 352)
(pt 592 384)
)
(connector
(pt 552 352)
(pt 552 384)