-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFinal.net
More file actions
3798 lines (3798 loc) · 152 KB
/
Final.net
File metadata and controls
3798 lines (3798 loc) · 152 KB
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
(export (version D)
(design
(source "C:\\Users\\chris\\Documents\\CMPE 310\\CMPE310FinalLab\\Final\\Final.sch")
(date "5/3/2021 11:00:50 PM")
(tool "Eeschema (5.1.9)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Final.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /8086/) (tstamps /608B1888/)
(title_block
(title)
(company)
(rev)
(date)
(source "8086(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /8086/Clock/) (tstamps /608B1888/60790D94/)
(title_block
(title)
(company)
(rev)
(date)
(source CLK.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/CMOS Flash/") (tstamps /608B6D23/)
(title_block
(title)
(company)
(rev)
(date)
(source "CMOS(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/CMOS Flash/CMOSHierarchal1/") (tstamps /608B6D23/609279EA/)
(title_block
(title)
(company)
(rev)
(date)
(source CMOSFlash.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/CMOS Flash/CMOSHierarchal/") (tstamps /608B6D23/609A61A4/)
(title_block
(title)
(company)
(rev)
(date)
(source CMOSFlash.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /SRAM/) (tstamps /608BAA47/)
(title_block
(title)
(company)
(rev)
(date)
(source "SRAM(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /8255/) (tstamps /608BBDB8/)
(title_block
(title)
(company)
(rev)
(date)
(source "8255(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name /8259/) (tstamps /608BBDF7/)
(title_block
(title)
(company)
(rev)
(date)
(source "8259(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /8254/) (tstamps /608BC502/)
(title_block
(title)
(company)
(rev)
(date)
(source "8254(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name /16550/) (tstamps /608C0603/)
(title_block
(title)
(company)
(rev)
(date)
(source "16550(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name /LCD/) (tstamps /608C30AC/)
(title_block
(title)
(company)
(rev)
(date)
(source "LCD(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 13) (name /Display/) (tstamps /608C3109/)
(title_block
(title)
(company)
(rev)
(date)
(source "Display(FIANL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 14) (name /POWER/) (tstamps /608C635B/)
(title_block
(title)
(company)
(rev)
(date)
(source "POWER(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 15) (name /DIP_Switches/) (tstamps /608C5EA8/)
(title_block
(title)
(company)
(rev)
(date)
(source "DIP_Switches(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 16) (name /8279/) (tstamps /608BD844/)
(title_block
(title)
(company)
(rev)
(date)
(source "8279(FINAL).sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref CPU_Switch1)
(value SW_Push)
(footprint Button_Switch_THT:SW_CW_GPTS203211B)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607622DA))
(comp (ref CPU_Capacitor1)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 6077E7C3))
(comp (ref D1)
(value CPU_Diode)
(footprint Diode_THT:D_5KPW_P7.62mm_Vertical_KathodeUp)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 60781792))
(comp (ref CPU_Resistor1)
(value R_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607846D6))
(comp (ref CPU_ADecode1)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(libsource (lib 74xx) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607721F2))
(comp (ref CPU_ADecode2)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(libsource (lib 74xx) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607A162B))
(comp (ref CPU_ADecode3)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(libsource (lib 74xx) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607A2E66))
(comp (ref CPU_IO/WR1)
(value 74LS244)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74ls244.pdf)
(libsource (lib 74xx) (part 74LS244) (description "Octal Buffer and Line Driver With 3-State Output, active-low enables, non-inverting outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 607EFA33))
(comp (ref CPU_DDecode2)
(value 74LS245)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(libsource (lib 74xx) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 608151DF))
(comp (ref CPU1)
(value 8086_Min_Mode)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://datasheets.chipdb.org/Intel/x86/808x/datashts/8086/231455-006.pdf)
(libsource (lib MCU_Intel) (part 8086_Min_Mode) (description "8086 (minimum mode), 16-Bit HMOS Microprocessor, PDIP-40"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 60761E58))
(comp (ref CPU_DDecode1)
(value 74LS245)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(libsource (lib 74xx) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names /8086/) (tstamps /608B1888/))
(tstamp 60814065))
(comp (ref CRYSTAL1)
(value Crystal)
(footprint Crystal:Crystal_AT310_D3.0mm_L10.0mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /8086/Clock/) (tstamps /608B1888/60790D94/))
(tstamp 60769DE9))
(comp (ref CLK_Resistor1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical)
(datasheet ~)
(fields
(field (name Spice_Model) 10k)
(field (name Spice_Netlist_Enabled) Y)
(field (name Spice_Primitive) R))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /8086/Clock/) (tstamps /608B1888/60790D94/))
(tstamp 6077AAF5))
(comp (ref CLK_Capacitor1)
(value 10uF)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(fields
(field (name Spice_Model) 10u)
(field (name Spice_Netlist_Enabled) Y)
(field (name Spice_Primitive) C))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /8086/Clock/) (tstamps /608B1888/60790D94/))
(tstamp 6077CC40))
(comp (ref CLK_Switch1)
(value SW_DPST_x2)
(footprint Button_Switch_THT:Push_E-Switch_KS01Q01)
(libsource (lib Switch) (part SW_DPST_x2) (description "Single Pole Single Throw (SPST) switch, separate symbol"))
(sheetpath (names /8086/Clock/) (tstamps /608B1888/60790D94/))
(tstamp 607846F3))
(comp (ref CLK1)
(value 8284)
(footprint Package_DIP:DIP-18_W7.62mm)
(datasheet http://www.cpu-galaxy.at/cpu/ram%20rom%20eprom/other_intel_chips/other_intel-Dateien/D8284A_Datasheet.pdf)
(libsource (lib Timer) (part 8284) (description "Clock Generator and Driver for i8086/88 Microcontrollers, PDIP-18"))
(sheetpath (names /8086/Clock/) (tstamps /608B1888/60790D94/))
(tstamp 6076232A))
(comp (ref U9)
(value 74LS138)
(footprint Package_DIP:DIP-16_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS138)
(libsource (lib 74xx) (part 74LS138) (description "Decoder 3 to 8 active low outputs"))
(sheetpath (names "/CMOS Flash/") (tstamps /608B6D23/))
(tstamp 60933BB4))
(comp (ref U12)
(value 74LS04)
(footprint Package_DIP:DIP-14_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS04)
(libsource (lib 74xx) (part 74LS04) (description "Hex Inverter"))
(sheetpath (names "/CMOS Flash/") (tstamps /608B6D23/))
(tstamp 60983958))
(comp (ref CMOS1)
(value 28F010)
(footprint Package_DIP:DIP-32_W7.62mm)
(libsource (lib 28F010) (part 28F010) (description "CMOS Flash DIP 32-pin"))
(sheetpath (names "/CMOS Flash/CMOSHierarchal1/") (tstamps /608B6D23/609279EA/))
(tstamp 6077AE01))
(comp (ref U41)
(value 28F010)
(footprint Package_DIP:DIP-32_W7.62mm)
(libsource (lib 28F010) (part 28F010) (description "CMOS Flash DIP 32-pin"))
(sheetpath (names "/CMOS Flash/CMOSHierarchal/") (tstamps /608B6D23/609A61A4/))
(tstamp 6077AE01))
(comp (ref HighHighSRAM1)
(value CY7C199)
(footprint Package_DIP:DIP-28_W7.62mm)
(libsource (lib Memory_RAM) (part CY7C199) (description ""))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 60931DB6))
(comp (ref LowLowSRAM1)
(value CY7C199)
(footprint Package_DIP:DIP-28_W7.62mm)
(libsource (lib Memory_RAM) (part CY7C199) (description ""))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 60981AD8))
(comp (ref U19)
(value 74AHC1G08)
(footprint Package_DIP:DIP-5-6_W7.62mm)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74AHC1G08) (description "Single AND Gate, Low-Voltage CMOS"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 613019A2))
(comp (ref U20)
(value 74AHC1G08)
(footprint Package_DIP:DIP-5-6_W7.62mm)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74AHC1G08) (description "Single AND Gate, Low-Voltage CMOS"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 61309321))
(comp (ref U21)
(value 74AHC1G08)
(footprint Package_DIP:DIP-5-6_W7.62mm)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74AHC1G08) (description "Single AND Gate, Low-Voltage CMOS"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 613108D7))
(comp (ref HighLowSRAM1)
(value CY7C199)
(footprint Package_DIP:DIP-28_W7.62mm)
(libsource (lib Memory_RAM) (part CY7C199) (description ""))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 608C2091))
(comp (ref LowHighSRAM1)
(value CY7C199)
(footprint Package_DIP:DIP-28_W7.62mm)
(libsource (lib Memory_RAM) (part CY7C199) (description ""))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 60981B26))
(comp (ref U18)
(value 74LS04)
(footprint Package_DIP:DIP-14_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS04)
(libsource (lib 74xx) (part 74LS04) (description "Hex Inverter"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 619E8FEB))
(comp (ref U17)
(value 74LS04)
(footprint Package_DIP:DIP-14_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS04)
(libsource (lib 74xx) (part 74LS04) (description "Hex Inverter"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 619F3CB3))
(comp (ref SRAMSelector1)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 60922640))
(comp (ref U1)
(value 74AHC1G08)
(footprint Package_DIP:DIP-5-6_W7.62mm)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74AHC1G08) (description "Single AND Gate, Low-Voltage CMOS"))
(sheetpath (names /SRAM/) (tstamps /608BAA47/))
(tstamp 609251D1))
(comp (ref PPI1)
(value 8255)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://aturing.umcs.maine.edu/~meadow/courses/cos335/Intel8255A.pdf)
(libsource (lib Interface) (part 8255) (description "Programmable Peripheral Interface, PDIP-40"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 608B2A09))
(comp (ref PPI_Decoder1)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 608B3749))
(comp (ref PPI3)
(value 8255)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://aturing.umcs.maine.edu/~meadow/courses/cos335/Intel8255A.pdf)
(libsource (lib Interface) (part 8255) (description "Programmable Peripheral Interface, PDIP-40"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 6094AEDD))
(comp (ref PPI2)
(value 8255)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://aturing.umcs.maine.edu/~meadow/courses/cos335/Intel8255A.pdf)
(libsource (lib Interface) (part 8255) (description "Programmable Peripheral Interface, PDIP-40"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 6095BCB7))
(comp (ref PPI_Header7)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A5AFA0))
(comp (ref PPI_Header8)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A5D436))
(comp (ref PPI_Header9)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A5E403))
(comp (ref PPI_Header4)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A5F6FB))
(comp (ref PPI_Header5)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A6071B))
(comp (ref PPI_Header6)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 60A61BBF))
(comp (ref PPI_Header3)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 609F5080))
(comp (ref PPI_Header2)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 609F4051))
(comp (ref PPI_Header1)
(value Conn_01x08_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8255/) (tstamps /608BBDB8/))
(tstamp 609C6613))
(comp (ref 8259INTR1)
(value 8259)
(footprint Package_DIP:DIP-28_W15.24mm)
(datasheet http://pdos.csail.mit.edu/6.828/2005/readings/hardware/8259A.pdf)
(libsource (lib Interface) (part 8259) (description "8259, Programmable Interrupt Controller, PDIP-28"))
(sheetpath (names /8259/) (tstamps /608BBDF7/))
(tstamp 6078126B))
(comp (ref SW3)
(value SW_Push)
(footprint Button_Switch_THT:SW_PUSH-12mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /8259/) (tstamps /608BBDF7/))
(tstamp 60783CAD))
(comp (ref 8259Selector1)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /8259/) (tstamps /608BBDF7/))
(tstamp 60799BF8))
(comp (ref R1)
(value 10000)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /8259/) (tstamps /608BBDF7/))
(tstamp 62016C05))
(comp (ref Counter1)
(value 8254)
(footprint Package_DIP:DIP-24_W15.24mm)
(datasheet http://www.scs.stanford.edu/10wi-cs140/pintos/specs/8254.pdf)
(libsource (lib Timer) (part 8254) (description "Programmable Interval Timer, PDIP-24"))
(sheetpath (names /8254/) (tstamps /608BC502/))
(tstamp 60845EE8))
(comp (ref Counter_Decode1)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /8254/) (tstamps /608BC502/))
(tstamp 6084E134))
(comp (ref Counter_Resistor1)
(value 10000)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /8254/) (tstamps /608BC502/))
(tstamp 61A1330B))
(comp (ref Counter_Header1)
(value Conn_01x06_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x06_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Female) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /8254/) (tstamps /608BC502/))
(tstamp 61FB5B66))
(comp (ref UART1)
(value 16550)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://www.ti.com/lit/ds/symlink/pc16550d.pdf)
(libsource (lib Interface_UART) (part 16550) (description "PC16550D, Universal Asynchronous Receiver/Transmitter with FIFOs, PDIP-40"))
(sheetpath (names /16550/) (tstamps /608C0603/))
(tstamp 6077B6BD))
(comp (ref SIXTEENL8)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /16550/) (tstamps /608C0603/))
(tstamp 6092D044))
(comp (ref MAX235)
(value max235cpg)
(footprint Package_DIP:DIP-24_W7.62mm)
(libsource (lib max235cpg) (part max235cpg) (description "MAX 235 Line Driver"))
(sheetpath (names /16550/) (tstamps /608C0603/))
(tstamp 6092F06D))
(comp (ref Resistor10K1)
(value Resistor)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /16550/) (tstamps /608C0603/))
(tstamp 6094EC64))
(comp (ref DSUB1)
(value DSUB-9)
(footprint Connector_Dsub:DSUB-9_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm)
(libsource (lib DSUB-9) (part DSUB-9) (description "9-pin UART serial interface"))
(sheetpath (names /16550/) (tstamps /608C0603/))
(tstamp 60956604))
(comp (ref LCD_16L8)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /LCD/) (tstamps /608C30AC/))
(tstamp 6158A041))
(comp (ref LCD_4x20)
(value LCD4x20)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet https://componentsearchengine.com/Datasheets/1/LCD4x20.pdf)
(fields
(field (name Description) "LCD Character Display Modules & Accessories STN-Y/G Transfl 77.5 x 47.0")
(field (name Height) 14.5)
(field (name Manufacturer_Name) "Newhaven Display")
(field (name "Mouser Part Number") 763-0420AZFLYBW33V3)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=763-0420AZFLYBW33V3))
(libsource (lib LCD4x20) (part LCD4x20) (description "LCD Character Display Modules & Accessories STN-Y/G Transfl 77.5 x 47.0"))
(sheetpath (names /LCD/) (tstamps /608C30AC/))
(tstamp 61587A20))
(comp (ref Display1)
(value 74LS374)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS374)
(libsource (lib 74xx) (part 74LS374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607791B4))
(comp (ref Display2)
(value 74LS374)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS374)
(libsource (lib 74xx) (part 74LS374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 60775947))
(comp (ref Display3)
(value 74LS374)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS374)
(libsource (lib 74xx) (part 74LS374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 60778C07))
(comp (ref Seven_Seg1)
(value MAN71A)
(footprint Display_7Segment:MAN71A)
(datasheet https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php)
(libsource (lib Display_Character) (part MAN71A) (description "Single digit 7 segment red LED common anode right hand decimal"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 6078B9DF))
(comp (ref Seven_Seg2)
(value MAN71A)
(footprint Display_7Segment:MAN71A)
(datasheet https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php)
(libsource (lib Display_Character) (part MAN71A) (description "Single digit 7 segment red LED common anode right hand decimal"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 6079109D))
(comp (ref Display_Decode2)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607F2271))
(comp (ref Display_Decode1)
(value PAL16L8)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib Logic_Programmable) (part PAL16L8) (description "Programmable Logic Array, DIP-20"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607E2663))
(comp (ref R7)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DB4B1))
(comp (ref R13)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DBB18))
(comp (ref R8)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DBE68))
(comp (ref R10)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DC074))
(comp (ref R11)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DC384))
(comp (ref R6)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DC7FD))
(comp (ref R9)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DCA28))
(comp (ref R12)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib pspice) (part R) (description "Resistor symbol for simulation only"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607DCE5E))
(comp (ref D3)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 6088040B))
(comp (ref D5)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 60881B1C))
(comp (ref D4)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 608822A0))
(comp (ref D8)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 60882CCF))
(comp (ref D9)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 608833D5))
(comp (ref D7)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 608837A6))
(comp (ref D2)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 608843B6))
(comp (ref D6)
(value LED)
(footprint LED_THT:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 60884A72))
(comp (ref R4)
(value R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607D585F))
(comp (ref R5)
(value R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Display/) (tstamps /608C3109/))
(tstamp 607D65C2))
(comp (ref C7)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60786BAF))
(comp (ref C9)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078838C))
(comp (ref C11)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 607884A2))
(comp (ref C13)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 607889E2))
(comp (ref C15)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078E574))
(comp (ref C17)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078E57A))
(comp (ref C19)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078E580))
(comp (ref C21)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078E586))
(comp (ref C23)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078F9B2))
(comp (ref C25)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078F9B8))
(comp (ref C27)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6078F9BE))
(comp (ref C3)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 607906C5))
(comp (ref C5)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 607906CB))
(comp (ref C8)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797042))
(comp (ref C10)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797048))
(comp (ref C12)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6079704E))
(comp (ref C14)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797054))
(comp (ref C16)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6079705A))
(comp (ref C18)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797060))
(comp (ref C20)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797066))
(comp (ref C22)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6079706C))
(comp (ref C24)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797072))
(comp (ref C26)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797078))
(comp (ref C28)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6079707E))
(comp (ref C4)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60797084))
(comp (ref C6)
(value CP1_Small)
(footprint Capacitor_THT:CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 6079708A))
(comp (ref Power_1)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.00mm:PinHeader_1x02_P1.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /POWER/) (tstamps /608C635B/))
(tstamp 60B637C0))
(comp (ref DIP_Switches1)
(value SW_DIP_x08)
(footprint Button_Switch_THT:SW_CW_GPTS203211B)
(datasheet ~)
(libsource (lib Switch) (part SW_DIP_x08) (description "8x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608A2143))
(comp (ref R14)
(value R_Small_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608CA32B))
(comp (ref R16)
(value R_Small_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608CC836))
(comp (ref R17)
(value R_Small_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608CE1B8))
(comp (ref R18)
(value R_Small_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608CFB84))
(comp (ref R19)
(value R_Small_US)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /DIP_Switches/) (tstamps /608C5EA8/))
(tstamp 608D14CB))
(comp (ref R20)
(value R_Small_US)