forked from hackup/KERNALquattro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKernalQuattro.kicad_sch
executable file
·2402 lines (2336 loc) · 94 KB
/
KernalQuattro.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 20211123) (generator eeschema)
(uuid 76aa52fb-b8e9-482a-aa7b-371e7783e055)
(paper "A4")
(title_block
(title "KERNALquattro")
(date "2022-05-02")
(rev "1")
(company "www.hackup.net")
(comment 1 "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.")
(comment 2 "This work is licensed under a")
)
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (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 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Memory_EEPROM:28C256" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "28C256" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0006.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Parallel EEPROM 256Kb" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Paged Parallel EEPROM 256Kb (32K x 8), DIP-28/SOIC-28" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm* SOIC*7.5x17.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "28C256_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -17.78 0) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_DIP_x04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_DIP_x04" (id 1) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SW?DIP?x4*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_DIP_x04_0_0"
(circle (center -2.032 -2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -2.032 5.08) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 -2.3876)
(xy 2.3622 -1.3462)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.127)
(xy 2.3622 1.1684)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 2.667)
(xy 2.3622 3.7084)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 5.207)
(xy 2.3622 6.2484)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 -2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 5.08) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_DIP_x04_0_1"
(rectangle (start -3.81 7.62) (end 3.81 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SW_DIP_x04_1_1"
(pin passive line (at -7.62 5.08 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 2.54 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 0 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hackup:2364" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 -17.78 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "2364" (id 1) (at 0 17.78 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 0 17.78 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 0 17.78 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "2364_0_1"
(rectangle (start -6.35 16.51) (end 6.35 -16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin tri_state line (at 11.43 -8.89 180) (length 5.08)
(name "D5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 11.43 -6.35 180) (length 5.08)
(name "D6" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 11.43 -3.81 180) (length 5.08)
(name "D7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 -1.27 180) (length 5.08)
(name "A11" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 1.27 180) (length 5.08)
(name "A10" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at 11.43 3.81 180) (length 5.08)
(name "/CE" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 6.35 180) (length 5.08)
(name "A12" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 8.89 180) (length 5.08)
(name "A9" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 11.43 180) (length 5.08)
(name "A8" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 11.43 13.97 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
)
(symbol "2364_1_1"
(pin input line (at -11.43 13.97 0) (length 5.08)
(name "A7" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -11.43 -8.89 0) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -11.43 -11.43 0) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 -13.97 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 11.43 -13.97 180) (length 5.08)
(name "D3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 11.43 -11.43 180) (length 5.08)
(name "D4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 11.43 0) (length 5.08)
(name "A6" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 8.89 0) (length 5.08)
(name "A5" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 6.35 0) (length 5.08)
(name "A4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 3.81 0) (length 5.08)
(name "A3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 1.27 0) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -1.27 0) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -3.81 0) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -11.43 -6.35 0) (length 5.08)
(name "D0" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 85.725 164.465) (diameter 0) (color 0 0 0 0)
(uuid 1ca03430-7fdf-4982-a56a-2f493eeda440)
)
(junction (at 115.57 150.495) (diameter 0) (color 0 0 0 0)
(uuid 237605ed-39fb-4645-9f1c-2e98a2d987f6)
)
(junction (at 139.065 150.495) (diameter 0) (color 0 0 0 0)
(uuid 3117b1fb-0766-424a-8081-be67108389a7)
)
(junction (at 161.29 150.495) (diameter 0) (color 0 0 0 0)
(uuid 32a12a21-443e-4728-927f-c4e38170867f)
)
(junction (at 126.365 131.445) (diameter 0) (color 0 0 0 0)
(uuid 3b082832-406c-4e6a-a26f-43f98f9eeebc)
)
(junction (at 105.41 126.365) (diameter 0) (color 0 0 0 0)
(uuid 4357f182-60a9-4806-a49c-0e8776579734)
)
(junction (at 139.065 131.445) (diameter 0) (color 0 0 0 0)
(uuid 62364d54-d435-4b07-9aed-bd547e8774de)
)
(junction (at 136.525 150.495) (diameter 0) (color 0 0 0 0)
(uuid 72779b5b-f2fd-4df5-ac4d-9e1d0cb3e47b)
)
(junction (at 136.525 128.905) (diameter 0) (color 0 0 0 0)
(uuid 85e12c53-8869-4d07-a3a3-7fa0eba30972)
)
(junction (at 115.57 131.445) (diameter 0) (color 0 0 0 0)
(uuid 8f32b9ff-e70c-46b7-b957-1300412003d7)
)
(junction (at 133.985 126.365) (diameter 0) (color 0 0 0 0)
(uuid 91646657-7013-4a0b-a792-e906e8cac255)
)
(junction (at 100.33 123.825) (diameter 0) (color 0 0 0 0)
(uuid 95f82ad8-143d-4129-8c31-f790de4d8c35)
)
(junction (at 133.35 93.345) (diameter 0) (color 0 0 0 0)
(uuid 9d97c8c1-da3e-4022-9fef-50ec121af461)
)
(junction (at 139.065 102.87) (diameter 0) (color 0 0 0 0)
(uuid a00f721e-438b-42e1-87b1-40f408938699)
)
(junction (at 85.725 48.26) (diameter 0) (color 0 0 0 0)
(uuid a4bca768-a3d0-439c-adf5-c74e4027cc5b)
)
(junction (at 136.525 105.41) (diameter 0) (color 0 0 0 0)
(uuid aa65f1ba-e2f5-4a1f-b4ec-9761f54bf4bc)
)
(junction (at 123.825 128.905) (diameter 0) (color 0 0 0 0)
(uuid b16ec400-5215-407b-b9e0-c2453c6f4285)
)
(junction (at 110.49 150.495) (diameter 0) (color 0 0 0 0)
(uuid c10245be-8ee9-4cf4-adde-bf633c64b6dd)
)
(junction (at 131.445 123.825) (diameter 0) (color 0 0 0 0)
(uuid f1fa5e14-fb03-4da1-ac79-fe178f707db7)
)
(junction (at 110.49 128.905) (diameter 0) (color 0 0 0 0)
(uuid f7586b52-e6ac-404f-b7a7-293a53c58646)
)
(bus_entry (at 146.05 92.71) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 067e7aa1-5ee2-436d-bbc1-2954d63686df)
)
(bus_entry (at 53.34 85.725) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b73969b-f9e9-4936-ab87-2fc0bf9d35dd)
)
(bus_entry (at 83.185 85.725) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 118b64cb-3c9d-449b-a053-4abf858ab411)
)
(bus_entry (at 83.185 98.425) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16725c7e-4a13-4888-86a1-e51add16def4)
)
(bus_entry (at 173.99 77.47) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 282fd1ae-a2bb-4c1c-a1ff-39fd631ca843)
)
(bus_entry (at 146.05 67.31) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30eb79bc-dcf7-4254-a5a3-7c3e5ffc9cc9)
)
(bus_entry (at 53.34 73.025) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33cccd06-ec0e-42de-bcda-09ca22cdb19e)
)
(bus_entry (at 146.05 82.55) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36786663-8a67-44a9-b0d9-1e247758b231)
)
(bus_entry (at 146.05 77.47) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bb54a82-02ab-4c63-be7e-733b6303aa00)
)
(bus_entry (at 146.05 69.85) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d9cf7be-0d31-4e5b-8189-c6c3e6205154)
)
(bus_entry (at 83.185 90.805) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 405ed23a-3356-4c01-82fd-13b879881ac5)
)
(bus_entry (at 173.99 85.09) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44da7b57-ff48-4745-a6af-8696214d4ba7)
)
(bus_entry (at 146.05 85.09) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 470dcc9d-e306-42b8-ab4e-21975e0d95f1)
)
(bus_entry (at 146.05 72.39) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ea82744-5d50-44b6-b8a0-c53bd2a4dd2b)
)
(bus_entry (at 83.185 93.345) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50bc83da-fc06-4a21-abe5-21aaa9da6720)
)
(bus_entry (at 146.05 97.79) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55f95be2-366c-4d1f-80e7-7ba89d14ba36)
)
(bus_entry (at 53.34 80.645) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56c61072-2b11-41ee-ad52-41ffc9ea5dd0)
)
(bus_entry (at 53.34 78.105) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c8c8f8d-b239-46fb-abae-ea247f813e67)
)
(bus_entry (at 53.34 93.345) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fae9744-7867-4ff7-b556-cc8d15158ca0)
)
(bus_entry (at 53.34 83.185) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 637a3657-e868-47bd-864f-ef786d3f4c09)
)
(bus_entry (at 83.185 88.265) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 666e44e8-c8c7-4081-9107-93315a545c28)
)
(bus_entry (at 146.05 90.17) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c24f885-2e70-443b-ae08-b635ce0bf4d5)
)
(bus_entry (at 53.34 88.265) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a67f5fd-6b07-4145-b288-46786afcbd3c)
)
(bus_entry (at 146.05 80.01) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83b7032a-7eaf-4f9e-80fc-8b3f8ae9dabd)
)
(bus_entry (at 146.05 74.93) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8924b9eb-f1c1-44df-ba0a-594363c172f9)
)
(bus_entry (at 53.34 75.565) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9591ecd0-f9dd-493c-9190-dd2aff96397d)
)
(bus_entry (at 53.34 67.945) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b2d4900-981b-4ee7-855e-e85e1a20aa8a)
)
(bus_entry (at 173.99 87.63) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d790d0c-f0a6-41bc-ad61-7a0795580196)
)
(bus_entry (at 173.99 80.01) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3d15c6d-c9d0-4c04-b830-650cf9c2134a)
)
(bus_entry (at 83.185 83.185) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae664a88-8a11-4084-a5bc-c9f4938015ed)
)
(bus_entry (at 53.34 70.485) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2f35f23-8935-41aa-9058-8c6490169397)
)
(bus_entry (at 146.05 87.63) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd2453a7-6053-44af-81e6-812711d8e38d)
)
(bus_entry (at 83.185 95.885) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6dd1214-120a-4701-bc3e-8a29540e668b)
)
(bus_entry (at 173.99 72.39) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dbe625da-d302-40b4-92ba-844523f9a4eb)
)
(bus_entry (at 146.05 95.25) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4c0aeb7-ce2f-4a94-a2bb-f3a0852c650e)
)
(bus_entry (at 173.99 69.85) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e847c12d-9748-48d8-8f06-622263ea82c6)
)
(bus_entry (at 53.34 90.805) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea1940fe-6544-4400-8a99-fe4427ad7b34)
)
(bus_entry (at 83.185 73.025) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec505998-69ed-4ced-8361-67e04f1f69b0)
)
(bus_entry (at 83.185 78.105) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef5d468a-f92a-4067-9e2a-9df2e120921a)
)
(bus_entry (at 83.185 75.565) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8df3ebb-3180-48dc-8dfa-7a2859e0a815)
)
(bus_entry (at 173.99 82.55) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f97cf737-eafb-41f1-b412-8d6d532a2959)
)
(bus_entry (at 173.99 74.93) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd771dae-7063-45f9-a46f-9eeaa953e1dc)
)
(wire (pts (xy 110.49 150.495) (xy 105.41 150.495))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 002b2483-c085-4b5d-b830-4a36913e7aef)
)
(bus (pts (xy 146.05 95.25) (xy 146.05 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 032b5930-9f43-4f71-b15a-e358e70d6548)
)
(bus (pts (xy 85.725 100.965) (xy 85.725 164.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0363a42f-99e7-494b-90e4-f58a82809267)
)
(bus (pts (xy 146.05 82.55) (xy 146.05 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 043612a1-d17c-45ee-915c-70124cdc5b67)
)
(wire (pts (xy 110.49 150.495) (xy 110.49 145.415))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05e88178-b95a-4501-93fe-9949f7d7e568)
)
(wire (pts (xy 148.59 72.39) (xy 151.13 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0607e1d1-c59a-47e0-9c6d-d5c83ea68a55)
)
(wire (pts (xy 80.645 75.565) (xy 83.185 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 099c147a-d824-4fc4-82e0-982de2856dbb)
)
(wire (pts (xy 110.49 128.905) (xy 123.825 128.905))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09c723d4-a214-4781-a30c-09fb01abe793)
)
(wire (pts (xy 133.985 126.365) (xy 133.985 133.985))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0addd06e-c691-4579-86a0-eb30191c22fb)
)
(wire (pts (xy 133.985 115.57) (xy 133.985 126.365))