-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
LittleSixteen.net
4770 lines (4770 loc) · 184 KB
/
LittleSixteen.net
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 /home/sukko/Documents/kicad/LittleSixteen/LittleSixteen.sch)
(date "Mon 06 Dec 2021 22:55:53 CET")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-17)
(source LittleSixteen.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /CPU/) (tstamps /5E4A81E1/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-17)
(source cpu.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /TED/) (tstamps /5DE044CB/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2020-01-03)
(source ted.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /RAM/) (tstamps /5E4A465A/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-28)
(source ram.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /ROMs/) (tstamps /5EE476E1/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-14)
(source rom.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /Keyboard/) (tstamps /5DECEF6F/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-02)
(source keyboard.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name "/Datassette & Serial Bus/") (tstamps /5ECB474B/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-12-05)
(source datasette.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name "/Expansion Port/") (tstamps /5E6A379E/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-12-05)
(source exp_port.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name "/Power & Misc/") (tstamps /5EACE220/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-12-06)
(source misc.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name "/PLA & Chip Selection/") (tstamps /5EE7AAEB/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-05)
(source pla.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name /Joysticks/) (tstamps /61BCD018/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-12-01)
(source joysticks.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name "/Audio/Video Output/") (tstamps /5E019FCB/)
(title_block
(title LittleSixteen)
(company SukkoPera)
(rev 3git)
(date 2021-11-29)
(source avout.sch)
(comment (number 1) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 2) (value "WARNING: These schematics might contain errors!"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61150450))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61150D7C))
(comp (ref H5)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 611511B9))
(comp (ref H7)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 611515CC))
(comp (ref H9)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_4.3mm_M4_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61151934))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61152AD4))
(comp (ref H4)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61152B3A))
(comp (ref H6)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61152B44))
(comp (ref H8)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_4.3mm_M4_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61152B4E))
(comp (ref H10)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_4.3mm_M4_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61152B58))
(comp (ref V0)
(value LOGO)
(footprint LittleSixteen:Logo)
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61145DF1))
(comp (ref V2)
(value "CC BY-NC-SA 4.0")
(footprint LittleSixteen:cc_by_nc_sa)
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61992CC0))
(comp (ref H11)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61A81AD7))
(comp (ref H12)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61A81BB9))
(comp (ref H13)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61A81BC3))
(comp (ref H14)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 61A81BCD))
(comp (ref V1)
(value PCBWAY_LOGO)
(footprint LittleSixteen:pcbway)
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63408BAA))
(comp (ref U2)
(value MOS_8501)
(footprint LittleSixteen:DIP-40_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(libsource (lib MOS_8501) (part MOS_8501) (description ""))
(sheetpath (names /CPU/) (tstamps /5E4A81E1/))
(tstamp 5E4AA751))
(comp (ref C4)
(value 10u/25V)
(footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /CPU/) (tstamps /5E4A81E1/))
(tstamp 5E4B0F0F))
(comp (ref C22)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /CPU/) (tstamps /5E4A81E1/))
(tstamp 5E4B1835))
(comp (ref R19)
(value 3.3k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU/) (tstamps /5E4A81E1/))
(tstamp 5E989959))
(comp (ref U102)
(value MOS_6510)
(footprint LittleSixteen:DIP-40_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(libsource (lib MOS_6510) (part MOS_6510) (description ""))
(sheetpath (names /CPU/) (tstamps /5E4A81E1/))
(tstamp 62666B06))
(comp (ref U1)
(value MOS_7360_TED)
(footprint LittleSixteen:DIP-48_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(libsource (lib MOS_7360_TED) (part MOS_7360_TED) (description ""))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5DE0697D))
(comp (ref C3)
(value 10u/25V)
(footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5E9903C9))
(comp (ref C21)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5E9903CF))
(comp (ref C12)
(value 22p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EAD5FE1))
(comp (ref CT1)
(value 40p)
(footprint LittleSixteen:VariCap)
(datasheet ~)
(libsource (lib Device) (part C_Variable) (description "Variable capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EAD8D4F))
(comp (ref R2)
(value 4.7k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EADE4E6))
(comp (ref C13)
(value 220p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EADE9FD))
(comp (ref C14)
(value 150p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EADF3F3))
(comp (ref R1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EAF3AF0))
(comp (ref Q1)
(value 2SC1815)
(footprint Package_TO_SOT_THT:TO-92_Inline_Wide)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/Toshiba%20PDFs/2SC1815.pdf)
(libsource (lib Transistor_BJT) (part 2SC1815) (description "0.15A Ic, 50V Vce, Low Noise Audio NPN Transistor, TO-92"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EAF64AB))
(comp (ref R4)
(value 220)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EAFEF94))
(comp (ref R3)
(value 470)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB093CB))
(comp (ref C15)
(value 10p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB150D4))
(comp (ref R5)
(value 18k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB16315))
(comp (ref Q2)
(value 2SC1815)
(footprint Package_TO_SOT_THT:TO-92_Inline_Wide)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/Toshiba%20PDFs/2SC1815.pdf)
(libsource (lib Transistor_BJT) (part 2SC1815) (description "0.15A Ic, 50V Vce, Low Noise Audio NPN Transistor, TO-92"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB1F45B))
(comp (ref R6)
(value 1.5k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB24934))
(comp (ref R7)
(value 470)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB371E4))
(comp (ref C32)
(value 100p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB3F5F2))
(comp (ref TP1)
(value CLOCK_TESTPOINT)
(footprint TestPoint:TestPoint_Pad_D2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5EB92ED3))
(comp (ref Y1)
(value Crystal)
(footprint Crystal:Crystal_HC49-U_Horizontal_1EP_style2)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND3) (description "Three pin crystal, GND on pin 3"))
(sheetpath (names /TED/) (tstamps /5DE044CB/))
(tstamp 5E276D96))
(comp (ref U6)
(value 4416)
(footprint LittleSixteen:DIP-18_W7.62mm_Socket_LongPads)
(datasheet http://pdf.datasheetcatalog.com/datasheet_pdf/texas-instruments/TMS4416-12_to_TMS4416-20.pdf)
(libsource (lib 4416) (part 4416) (description "16384x4 Dynamic RAM"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5E74C446))
(comp (ref U5)
(value 4416)
(footprint LittleSixteen:DIP-18_W7.62mm_Socket_LongPads)
(datasheet http://pdf.datasheetcatalog.com/datasheet_pdf/texas-instruments/TMS4416-12_to_TMS4416-20.pdf)
(libsource (lib 4416) (part 4416) (description "16384x4 Dynamic RAM"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5E787BCA))
(comp (ref U7)
(value 74LS257)
(footprint LittleSixteen:DIP-16_W7.62mm_Socket_LongPads)
(libsource (lib 74ls157) (part 74LS157) (description ""))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5EA2906C))
(comp (ref U8)
(value 74LS257)
(footprint LittleSixteen:DIP-16_W7.62mm_Socket_LongPads)
(libsource (lib 74ls157) (part 74LS157) (description ""))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5EA2A6DF))
(comp (ref C10)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5EA3B958))
(comp (ref C8)
(value 220n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5EA8BF73))
(comp (ref C7)
(value 220n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5EAAE0D2))
(comp (ref RP3)
(value 68)
(footprint Resistor_THT:R_Array_SIP8)
(fields
(field (name Notes) Independent))
(libsource (lib rp3) (part RPack4_RP3) (description ""))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5E2F7E53))
(comp (ref RP4)
(value 68)
(footprint Resistor_THT:R_Array_SIP8)
(fields
(field (name Notes) Independent))
(libsource (lib rp4) (part RPack4_RP4) (description ""))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 5E55EE90))
(comp (ref C92)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 611A31E9))
(comp (ref JP4)
(value JP_RAMSIZE2)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 61451C3E))
(comp (ref JP3)
(value JP_RAMSIZE1)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 6147B280))
(comp (ref U12)
(value 74LS02)
(footprint LittleSixteen:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74ls02)
(libsource (lib 74xx) (part 74LS02) (description "quad 2-input NOR gate"))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 618ABE98))
(comp (ref R99)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /RAM/) (tstamps /5E4A465A/))
(tstamp 61920791))
(comp (ref U3)
(value 23128_BASIC)
(footprint LittleSixteen:DIP-28_W15.24mm_Socket_LongPads)
(datasheet http://ww1.microchip.com/downloads/en/devicedoc/11003L.pdf)
(libsource (lib 23128) (part 23128) (description "16k x 8 bit PROM used as ROM in several commodore (and other) computer systems"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 5EE49479))
(comp (ref C5)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 5EE4EA00))
(comp (ref C6)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 5EE644B7))
(comp (ref U90)
(value 74LS08)
(footprint LittleSixteen:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS08)
(libsource (lib 74xx) (part 74LS08) (description "Quad And2"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 61D02B96))
(comp (ref C41)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 61D168CC))
(comp (ref JP5)
(value SWITCH_KCE)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Bridged12) (description "Jumper, 3-pole, pins 1+2 closed/bridged"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 61D78514))
(comp (ref JP6)
(value SWITCH_KA15)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Bridged12) (description "Jumper, 3-pole, pins 1+2 closed/bridged"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 619F419B))
(comp (ref U4)
(value 23128_KERNAL)
(footprint LittleSixteen:DIP-28_W15.24mm_Socket_LongPads)
(datasheet http://ww1.microchip.com/downloads/en/devicedoc/11003L.pdf)
(libsource (lib 23128) (part 23128) (description "16k x 8 bit PROM used as ROM in several commodore (and other) computer systems"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 5EE6447F))
(comp (ref JP7)
(value SWITCH_KA14)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Bridged12) (description "Jumper, 3-pole, pins 1+2 closed/bridged"))
(sheetpath (names /ROMs/) (tstamps /5EE476E1/))
(tstamp 61A25418))
(comp (ref U13)
(value MOS_6529)
(footprint LittleSixteen:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(libsource (lib MOS_6529) (part MOS_6529) (description ""))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5DECF108))
(comp (ref C33)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5DED1597))
(comp (ref CN2)
(value KEYBOARD_HEADER)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x20_Male) (description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5DED69BA))
(comp (ref FB46)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E275829))
(comp (ref FB56)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E277735))
(comp (ref FB53)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E279505))
(comp (ref FB54)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27AC84))
(comp (ref FB44)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27B4EF))
(comp (ref FB45)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27BE11))
(comp (ref FB50)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27C5F0))
(comp (ref FB52)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27CC99))
(comp (ref FB41)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27D4CD))
(comp (ref FB48)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27E7DF))
(comp (ref FB42)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27ED7A))
(comp (ref FB55)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27F5BE))
(comp (ref FB43)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E27FD6B))
(comp (ref FB51)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E280D1A))
(comp (ref FB47)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E281382))
(comp (ref FB49)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Keyboard/) (tstamps /5DECEF6F/))
(tstamp 5E2818F5))
(comp (ref FB14)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECB83BF))
(comp (ref C26)
(value 100n)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECBA653))
(comp (ref FB15)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECBC7A2))
(comp (ref C23)
(value 470p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECC701E))
(comp (ref Q5)
(value 2SD880)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabUp)
(datasheet http://pdf.datasheetcatalog.com/datasheet/sanyo/ds_pdf_e/2SB631.pdf)
(libsource (lib Transistor_BJT) (part 2SD600) (description "1A Ic, 100V Vce, High Voltage Power NPN Transistor, TO-126"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECC85E0))
(comp (ref D12)
(value 6.8V)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(libsource (lib w_device) (part ZENER) (description "Diode zener"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECCE714))
(comp (ref R13)
(value 470)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECCF7CF))
(comp (ref U9)
(value 74LS06)
(footprint LittleSixteen:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS06)
(libsource (lib 74xx) (part 74LS06) (description "Inverter Open Collect"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECD4244))
(comp (ref R29)
(value 100)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECD9EF8))
(comp (ref C24)
(value 470p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECE063E))
(comp (ref U11)
(value 74LS125)
(footprint LittleSixteen:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS125)
(libsource (lib 74xx) (part 74LS125) (description "Quad buffer 3-State outputs"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECE62E7))
(comp (ref C25)
(value 470p)
(footprint Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECF7C46))
(comp (ref R12)
(value 3.3k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ED1DFFB))
(comp (ref R102)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ED6F117))
(comp (ref RP1)
(value 1k)
(footprint Resistor_THT:R_Array_SIP6)
(fields
(field (name Notes) Bussed))
(libsource (lib r_pack05) (part R_Pack_5_Split) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5EDB9C9F))
(comp (ref FB3)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E29E46B))
(comp (ref FB2)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E2AB049))
(comp (ref FB4)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E2AB69F))
(comp (ref FB5)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E2AC1A5))
(comp (ref FB1)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E2BCB55))
(comp (ref FB19)
(value Ferrite_3pin)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib Ferrite3Pin) (part Ferrite_3pin) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5E31356C))
(comp (ref D97)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U91 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 61845FF9))
(comp (ref D99)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U91 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 61845668))
(comp (ref D95)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U92 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 619101DA))
(comp (ref D94)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U92 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 619101EB))
(comp (ref CN3)
(value CASSETTE)
(datasheet http://service.powerdynamics.com/ec/Catalog17/Section%2011.pdf)
(libsource (lib mini-din-7) (part Mini-DIN-7) (description "7-pin Mini-DIN connector"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 620EE6EF))
(comp (ref D96)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U91 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 6195D0A7))
(comp (ref D98)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Do not mount if U91 is mounted"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 6195D577))
(comp (ref R93)
(value 3.3k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) "Only mount if using a 6510 CPU (But shouldn't hurt anyway)"))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 61AAE880))
(comp (ref D93)
(value 1n4148)
(footprint LittleSixteen:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) "Only mount if using a 6510 CPU"))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 61AB5646))
(comp (ref U91)
(value DT1042)
(footprint Package_SO:TSOP-6_1.65x3.05mm_P0.95mm)
(fields
(field (name Notes) "Optional, protects Serial port from ESD"))
(libsource (lib DT1042) (part DT1042) (description ""))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 6223655A))
(comp (ref U92)
(value DT1042)
(footprint Package_SO:TSOP-6_1.65x3.05mm_P0.95mm)
(fields
(field (name Notes) "Optional, protects Serial port from ESD"))
(libsource (lib DT1042) (part DT1042) (description ""))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 62324DC8))
(comp (ref J90)
(value CONN_TAPE_DRIVE)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x07_Odd_Even) (description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 62482A9D))
(comp (ref CN7)
(value SERIAL_BUS)
(footprint LittleSixteen:DIN-6_DS_6_102_OR_102B)
(datasheet http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(libsource (lib din-6) (part DIN-6) (description "6-pin DIN connector"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 62951460))
(comp (ref R94)
(value "4.7R 1W")
(footprint Resistor_THT:R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 61D9A19A))
(comp (ref CN93)
(value C64_STYLE_CASSETTE)
(footprint LittleSixteen:C64-Cassette-Port-Male)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Male) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 63113C84))
(comp (ref FB17)
(value Ferrite_Bead_Small)
(footprint LittleSixteen:Ferrite)
(datasheet ~)
(libsource (lib ferrite_bead_small) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names "/Datassette & Serial Bus/") (tstamps /5ECB474B/))
(tstamp 5ECD8623))
(comp (ref FB16)
(value Ferrite_Bead_Small)