-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathceda.kicad_sch
1495 lines (1457 loc) · 51.4 KB
/
ceda.kicad_sch
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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 12a6dbe3-008d-4c5b-88f6-9f1c816060be)
(paper "A4")
(title_block
(title "FPX-290")
(rev "05")
(company "Logic Systems Int'l Inc")
)
(lib_symbols
(symbol "74xx:74LS04" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS04" (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL not inv" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Hex Inverter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SSOP?14* TSSOP?14*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS04_1_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_2_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_3_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_4_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_5_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_6_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_7_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_7_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "74xx:74LS161" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -7.62 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS161" (at -7.62 -16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS161" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL CNT CNT4" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Synchronous 4-bit programmable binary Counter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?16*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS161_1_0"
(pin input line (at -12.7 -12.7 0) (length 5.08)
(name "~{MR}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 5.08)
(name "CET" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 5.08)
(name "Q3" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 7.62 180) (length 5.08)
(name "Q2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 10.16 180) (length 5.08)
(name "Q1" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 12.7 180) (length 5.08)
(name "Q0" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 0 180) (length 5.08)
(name "TC" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 20.32 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 5.08)
(name "CP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 5.08)
(name "D0" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "D3" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 5.08)
(name "CEP" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -20.32 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 5.08)
(name "~{PE}" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS161_1_1"
(rectangle (start -7.62 15.24) (end 7.62 -15.24)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "ceda:MAINCLK" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 3.81 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MAINCLK" (at -12.7 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAINCLK_0_1"
(rectangle (start -7.62 3.81) (end 2.54 -3.81)
(stroke (width 0.1524) (type default))
(fill (type background))
)
)
(symbol "MAINCLK_1_1"
(circle (center -4.064 2.032) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -1.016 2.032) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 0 -0.635) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -4.064 2.032)
(xy -1.016 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 0 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0 0.635) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(pin passive line (at -5.08 6.35 270) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -6.35 90) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 6.35 270) (length 2.54)
(name "B0" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -6.35 90) (length 2.54)
(name "B1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 95.25 161.29) (diameter 0) (color 0 0 0 0)
(uuid 0e7abe77-45f0-467b-a5c6-5a87fd6a2bb2)
)
(junction (at 59.69 158.75) (diameter 0) (color 0 0 0 0)
(uuid 3de94740-d7db-4a46-9528-a84395fe6882)
)
(junction (at 26.67 158.75) (diameter 0) (color 0 0 0 0)
(uuid 5b33e2fa-4eac-4904-afe4-2b610fd59490)
)
(junction (at 59.69 168.91) (diameter 0) (color 0 0 0 0)
(uuid 60fdd1c5-db71-4e74-9aae-e11ab5830339)
)
(junction (at 26.67 168.91) (diameter 0) (color 0 0 0 0)
(uuid 7946cece-f031-46f7-8db3-3b81330c3450)
)
(junction (at 95.25 158.75) (diameter 0) (color 0 0 0 0)
(uuid 906ba2b6-b459-4ca7-a9d1-c00f95879644)
)
(junction (at 135.89 160.02) (diameter 0) (color 0 0 0 0)
(uuid a2480b6d-37b7-49ef-9c69-89563aacbe2b)
)
(junction (at 135.89 170.18) (diameter 0) (color 0 0 0 0)
(uuid a9e23bd3-a558-4c64-b454-75341da2dad7)
)
(junction (at 59.69 176.53) (diameter 0) (color 0 0 0 0)
(uuid f743d81f-9364-424e-9168-393e25bb25a9)
)
(no_connect (at 152.4 154.94) (uuid c091669d-b003-45ba-b93a-d6cba2878e34))
(wire (pts (xy 59.69 168.91) (xy 59.69 176.53))
(stroke (width 0) (type default))
(uuid 02327923-cba0-4d6d-83b8-01b158b2dc7d)
)
(wire (pts (xy 171.45 170.18) (xy 187.96 170.18))
(stroke (width 0) (type default))
(uuid 072cc79d-6e1e-4a5c-879b-3e778e546de6)
)
(wire (pts (xy 135.89 170.18) (xy 156.21 170.18))
(stroke (width 0) (type default))
(uuid 085f61d1-339f-48cb-a25a-ca2e38610638)
)
(wire (pts (xy 26.67 184.15) (xy 31.75 184.15))
(stroke (width 0) (type default))
(uuid 0995fa64-9b30-4c21-9c58-307bf12529fb)
)
(wire (pts (xy 26.67 146.05) (xy 26.67 143.51))
(stroke (width 0) (type default))
(uuid 1c8f7b46-6b8c-4f4d-9c4d-6969949dbd6d)
)
(wire (pts (xy 26.67 168.91) (xy 34.29 168.91))
(stroke (width 0) (type default))
(uuid 1f6aacdf-ecce-4782-8ea4-f3302b1309ea)
)
(wire (pts (xy 135.89 170.18) (xy 135.89 180.34))
(stroke (width 0) (type default))
(uuid 24f0568b-b142-453e-b7dd-a8c73e144ecf)
)
(wire (pts (xy 26.67 158.75) (xy 26.67 153.67))
(stroke (width 0) (type default))
(uuid 26260a7b-5ae4-42ea-b25d-99bec7c6d641)
)
(wire (pts (xy 135.89 160.02) (xy 135.89 170.18))
(stroke (width 0) (type default))
(uuid 26533896-82b8-4396-861c-b9ac4ddf0c37)
)
(wire (pts (xy 97.79 163.83) (xy 95.25 163.83))
(stroke (width 0) (type default))
(uuid 26c379fd-584b-4a89-abc0-ca536807e6c6)
)
(wire (pts (xy 95.25 158.75) (xy 95.25 156.21))
(stroke (width 0) (type default))
(uuid 289016eb-202b-4652-bd94-2d8475c9e474)
)
(wire (pts (xy 26.67 168.91) (xy 26.67 184.15))
(stroke (width 0) (type default))
(uuid 3115990c-ea02-4311-b3fd-5368790709bd)
)
(wire (pts (xy 59.69 176.53) (xy 68.58 176.53))
(stroke (width 0) (type default))
(uuid 3f65aba6-793f-4437-85c0-159d4b15e8de)
)
(wire (pts (xy 59.69 158.75) (xy 59.69 168.91))
(stroke (width 0) (type default))
(uuid 44ca0b19-6f17-454a-b26f-f4cd9f0583ed)
)
(wire (pts (xy 53.34 184.15) (xy 59.69 184.15))
(stroke (width 0) (type default))
(uuid 45f23c67-1f59-4305-80df-a3bf6dc48655)
)
(wire (pts (xy 135.89 160.02) (xy 135.89 158.75))
(stroke (width 0) (type default))
(uuid 55e4b2e6-01ca-4a28-b1bd-9615bfb9e3bf)
)
(wire (pts (xy 139.7 160.02) (xy 135.89 160.02))
(stroke (width 0) (type default))
(uuid 57bbc52a-3f67-4e3c-8f3e-e097a593ba79)
)
(wire (pts (xy 135.89 154.94) (xy 139.7 154.94))
(stroke (width 0) (type default))
(uuid 5944e85f-786e-4280-aa3e-59c08c07e63e)
)
(wire (pts (xy 171.45 180.34) (xy 176.53 180.34))
(stroke (width 0) (type default))
(uuid 5e0384a6-5d27-4078-b4a4-5b4cc44e63e3)
)
(wire (pts (xy 152.4 160.02) (xy 156.21 160.02))
(stroke (width 0) (type default))
(uuid 669ec154-3938-47a3-93a3-b87b4bcad6bf)
)
(wire (pts (xy 95.25 161.29) (xy 95.25 158.75))
(stroke (width 0) (type default))
(uuid 6ee31092-2a39-47d7-8fb1-6ba8181dc423)
)
(wire (pts (xy 59.69 176.53) (xy 59.69 184.15))
(stroke (width 0) (type default))
(uuid 767c9c1c-5ee5-47f0-bfd8-34516663adcb)
)
(wire (pts (xy 45.72 184.15) (xy 39.37 184.15))
(stroke (width 0) (type default))
(uuid 78fe645b-c270-480f-9ec5-dd56ded3cc39)
)
(wire (pts (xy 83.82 176.53) (xy 97.79 176.53))
(stroke (width 0) (type default))
(uuid 849f1b3a-ba8e-4139-89e1-ed81ea41a5b0)
)
(wire (pts (xy 95.25 163.83) (xy 95.25 161.29))
(stroke (width 0) (type default))
(uuid 8cafba9e-4532-4f66-b9d9-2a59b27ac622)
)
(wire (pts (xy 95.25 161.29) (xy 97.79 161.29))
(stroke (width 0) (type default))
(uuid 8e7b3c81-65e8-4b6f-a421-b040b25b4cee)
)
(wire (pts (xy 123.19 156.21) (xy 135.89 156.21))
(stroke (width 0) (type default))
(uuid 91aa9938-7a4d-477a-bc3b-b30f81fce790)
)
(wire (pts (xy 156.21 180.34) (xy 135.89 180.34))
(stroke (width 0) (type default))
(uuid 94ba4c4e-d9fa-4d86-a460-39101af86e2b)
)
(wire (pts (xy 123.19 158.75) (xy 135.89 158.75))
(stroke (width 0) (type default))
(uuid 9d7b78ec-f104-4ef6-9c91-13877b119baa)
)
(wire (pts (xy 59.69 146.05) (xy 59.69 143.51))
(stroke (width 0) (type default))
(uuid a64805e1-f659-4e26-95ed-8cf0d6b9bddc)
)
(wire (pts (xy 59.69 158.75) (xy 59.69 153.67))
(stroke (width 0) (type default))
(uuid ab2a255d-838c-4709-be55-cb93022a4034)
)
(wire (pts (xy 26.67 158.75) (xy 26.67 168.91))
(stroke (width 0) (type default))
(uuid aed92f65-696f-4604-9c1c-797c736810a8)
)
(wire (pts (xy 49.53 168.91) (xy 59.69 168.91))
(stroke (width 0) (type default))
(uuid b4bc9fad-aac1-4240-99a9-5ddec7cf2cd3)
)
(wire (pts (xy 39.37 158.75) (xy 26.67 158.75))
(stroke (width 0) (type default))
(uuid c50d862e-7662-4743-92b1-1584950cc879)
)
(wire (pts (xy 96.52 168.91) (xy 97.79 168.91))
(stroke (width 0) (type default))
(uuid d81f90ac-10c9-48e3-894d-0ed11c4e4d0f)
)
(wire (pts (xy 96.52 181.61) (xy 97.79 181.61))
(stroke (width 0) (type default))
(uuid df5619eb-a730-4a95-a1fd-272bb935e2fb)
)
(wire (pts (xy 187.96 160.02) (xy 171.45 160.02))
(stroke (width 0) (type default))
(uuid e525e18e-0a65-4752-b137-df48642eabf8)
)
(wire (pts (xy 59.69 158.75) (xy 46.99 158.75))
(stroke (width 0) (type default))
(uuid e5f2f628-2699-4b40-afbb-3733620e7ad8)
)
(wire (pts (xy 135.89 156.21) (xy 135.89 154.94))
(stroke (width 0) (type default))
(uuid ee7a2d4c-3ee2-4bb2-a99b-aa32b60454c3)
)
(wire (pts (xy 95.25 158.75) (xy 97.79 158.75))
(stroke (width 0) (type default))
(uuid f71ab066-bc3d-4ee2-88a4-73b52a3a823c)
)
(wire (pts (xy 95.25 156.21) (xy 97.79 156.21))
(stroke (width 0) (type default))
(uuid f9965024-c922-4724-8032-90672c1276b8)
)
(text "These schematics have been reverse engineered from a Sanco 8003.\n\nThis is a work in progress. Beware of mistakes. No warranty.\n\nDownload the latest version, consider contributing, and report issues at:\ngithub.com/GLGPrograms/ceda-schematics\nretrofficina.glgprograms.it\n"
(at 26.67 116.84 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6332052c-dc10-41d3-8173-207cacda73d2)
)
(text "Sanco 8003 CEDA Unofficial Schematics" (at 25.4 101.6 0)
(effects (font (size 2.54 2.54)) (justify left bottom))
(uuid cb79a5f1-097c-4865-9710-3a8d3c234e82)
)
(label "FDC_CLK" (at 187.96 160.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid dd173182-11a3-44f1-9868-0682533eec4c)
)
(label "main clock" (at 187.96 170.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f7f8239c-bc8f-481c-8973-c8952c202c44)
)
(symbol (lib_id "74xx:74LS161") (at 110.49 168.91 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1ca69279-0765-4c35-ace6-9de0e782698a)
(property "Reference" "UA6" (at 112.6841 148.59 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "74LS161" (at 112.6841 151.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 110.49 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS161" (at 110.49 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 534da9af-bd0e-46ce-b969-e3b7c37a2932))
(pin "10" (uuid 1c7062cd-a9fd-462e-9c8f-03218aa15b53))
(pin "11" (uuid 8bb5705b-a3f2-49c7-bd9f-a4e34424ee6f))
(pin "12" (uuid e153efdf-409a-4d57-8729-3135dcbe6f7b))
(pin "13" (uuid 5e943ee1-023e-4d80-a4d5-19db83f7f18e))
(pin "14" (uuid 25273307-15eb-418f-8f14-a5d49222126e))
(pin "15" (uuid d73e2861-f973-4d7f-a1d8-ee74375f38a8))
(pin "16" (uuid c5571446-f862-4ca0-b667-2f16f96db28f))
(pin "2" (uuid d44f3334-1003-4726-ba91-8f3e7746e7ff))
(pin "3" (uuid 7fc04d96-024d-41a8-a642-92af09218017))
(pin "4" (uuid e01495af-a193-4d76-a412-9972ac131072))
(pin "5" (uuid b8bd0d2c-5190-4fd3-aaaf-737fbb42732b))
(pin "6" (uuid 58f7be92-31aa-464a-826d-f0b73eff87fc))
(pin "7" (uuid 8d0227b3-9691-4653-9cf6-04ff57e9be44))
(pin "8" (uuid 81e785b8-13af-42f5-9f27-f50dcbdefb4e))
(pin "9" (uuid dd221dfa-725e-4ac8-a678-0eb4967b83f5))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "UA6") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 26.67 143.51 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 410cfea4-e90f-4e7d-96a6-40066ff08762)
(property "Reference" "#PWR0110" (at 26.67 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 26.67 138.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 26.67 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 26.67 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 43f56810-1391-452a-a8ce-81a94c50ce08))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "#PWR0110") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 96.52 168.91 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4849d497-5ad5-46f4-b4ce-b10ec8d44236)
(property "Reference" "#PWR0112" (at 100.33 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 92.71 168.91 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 96.52 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 96.52 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 21203a35-b75c-460d-8cad-26a750ae82b3))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "#PWR0112") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 26.67 149.86 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 496b8f61-beb3-4b9f-9d43-110f8ac46cbb)
(property "Reference" "C52" (at 30.48 148.59 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "C" (at 30.48 151.13 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 25.7048 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 26.67 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d5752c62-5fb7-4976-bb9d-4e43c649bb81))
(pin "2" (uuid bc04106b-bf7e-4d06-8001-fb4461d44120))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be/ce60e45b-d802-4380-8f39-bef3de5fa20e"
(reference "C52") (unit 1)
)
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "C15") (unit 1)
)
)
)
)
(symbol (lib_id "74xx:74LS04") (at 163.83 160.02 0) (unit 3)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5ccc3a80-673b-490e-a11e-5913180b3050)
(property "Reference" "UA7" (at 166.37 153.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS04" (at 166.37 156.21 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 163.83 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (at 163.83 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 993e9dfb-253a-4822-8043-639440e1e8f0))
(pin "2" (uuid acac62f4-3798-4cf3-b79e-c85e53f4bdfe))
(pin "3" (uuid 05f285d3-d49c-40f7-9622-a08d60333f68))
(pin "4" (uuid 59f90222-d3a5-4537-9f7f-11f4e9361b2d))
(pin "5" (uuid 272e5fa9-7008-42b9-aba7-454a34d93c62))
(pin "6" (uuid 5619e821-82ca-4b25-a835-0107fc2b05c6))
(pin "8" (uuid 9f938626-de71-4cc0-aaf3-91d1236d6c50))
(pin "9" (uuid 11b1ccb9-7e99-430c-82d2-93c4de27fd75))
(pin "10" (uuid d3480350-1ad1-4161-9f8d-30d9da02f7f7))
(pin "11" (uuid d6aa69ee-b0bf-4ee1-a33a-2a272957702f))
(pin "12" (uuid be0950c4-3c0d-4019-b138-35d260eb25ae))
(pin "13" (uuid 28085f60-8688-45a5-9862-75cf9f170fe9))
(pin "14" (uuid 7f24aa86-f51c-4e42-b055-b7b3011c009f))
(pin "7" (uuid 9d8ccb63-f4ec-44b4-b88e-3424e58c9819))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "UA7") (unit 3)
)
)
)
)
(symbol (lib_id "Device:C") (at 35.56 184.15 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 81bcdd30-b257-4316-9dea-5d0b751e0949)
(property "Reference" "C54" (at 35.56 176.53 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "C" (at 35.56 179.07 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 31.75 183.1848 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 35.56 184.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccba0419-f9d2-45bb-a1d2-f9702ba6c561))
(pin "2" (uuid b3069e2e-efae-4a4d-b2a7-55f71d76811a))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be/ce60e45b-d802-4380-8f39-bef3de5fa20e"
(reference "C54") (unit 1)
)
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "C14") (unit 1)
)
)
)
)
(symbol (lib_id "74xx:74LS04") (at 163.83 180.34 0) (unit 5)
(in_bom yes) (on_board yes) (dnp no)
(uuid b2aaa8bc-1be2-48c5-bf6b-673925592d5d)
(property "Reference" "UA7" (at 166.37 173.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS04" (at 166.37 176.53 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 163.83 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (at 163.83 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ce662aa5-e25c-491a-a7b8-2160f39997b4))
(pin "2" (uuid a9f9002d-3e11-4196-89db-ebb507d2dcda))
(pin "3" (uuid f1ebd1f8-3996-4766-82b6-7536679e9418))
(pin "4" (uuid 59edacb6-c49c-4a79-956a-c86ad0dd23a0))
(pin "5" (uuid 28c386f3-30d5-49f5-b7ca-8756a2583a08))
(pin "6" (uuid 9f4d98af-8e1e-4b9a-b325-93253654072b))
(pin "8" (uuid 55a57f42-866b-4bb6-a0d3-b1dfa2c0cc24))
(pin "9" (uuid 93931f9c-68af-48b4-bc4d-b40ecbbda658))
(pin "10" (uuid 6853fdc0-ed46-4b4a-8266-fd5e4a81024c))
(pin "11" (uuid 7e961a13-044c-4c2b-a6d8-e2fabf9a8498))
(pin "12" (uuid 0d5553af-f881-4e06-8de1-e253157954d2))
(pin "13" (uuid 241ceb6b-f175-4563-b6d7-be9f4b4d87c8))
(pin "14" (uuid ffa83877-026e-4c0a-8acd-a726b3368ed3))
(pin "7" (uuid 5c1d752a-f92a-49dd-8faf-e4461cf022ee))
(instances
(project "ceda"
(path "/12a6dbe3-008d-4c5b-88f6-9f1c816060be"
(reference "UA7") (unit 5)
)
)
)
)
(symbol (lib_id "74xx:74LS04") (at 41.91 168.91 0) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid b4493128-4486-4e58-b016-5f212b41ee38)
(property "Reference" "K15" (at 44.45 162.56 0)