-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathC64CPLA.net
1044 lines (1044 loc) · 39.9 KB
/
C64CPLA.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 C:\Users\Jay\Documents\KIKAD\ADAPTERS\C64CPLA\C64CPLA.sch)
(date "12/23/2019 8:06:19 PM")
(tool "Eeschema (5.1.2)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source C64CPLA.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U17)
(value C64_PLA)
(footprint Package_DIP:DIP-28_W15.24mm)
(libsource (lib CPU2) (part C64_PLA) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD3635))
(comp (ref U8)
(value C64_PLA_C)
(footprint CPU2:DIP-64_750)
(libsource (lib CPU2) (part C64_PLA_C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD3E93))
(comp (ref C14)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE3802C))
(comp (ref U15)
(value 74HCT139PW,118)
(footprint Package_SO:TSSOP-16_4.4x5mm_P0.65mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74hct139.pdf)
(libsource (lib 74xx) (part 74LS139) (description "Dual Decoder 1 of 4, Active low outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEAAB5E))
(comp (ref C15)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEB42CC))
(comp (ref C26)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF8A871))
(comp (ref U6)
(value IS62C256AL-45TLI)
(footprint Package_SO:TSOP-I-28_11.8x8mm_P0.55mm)
(datasheet https://www.mouser.ca/datasheet/2/198/62-65C256AL-258444.pdf)
(libsource (lib CPU2) (part IS62C256AL-45TLI) (description "32K x 8 LOW POWER CMOS STATIC RAM, 45ns, TSOP I-28"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01AFC5))
(comp (ref C6)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01D879))
(comp (ref U13)
(value "74AHCT257PW,118 ")
(footprint Package_SO:TSSOP-16_4.4x5mm_P0.65mm)
(datasheet https://www.mouser.ca/datasheet/2/916/74HC_HCT257-1319849.pdf)
(libsource (lib 74xx) (part 74LS257) (description "Quad 2 to 1 Multiplexer"))
(sheetpath (names /) (tstamps /))
(tstamp 5E235576))
(comp (ref C13)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E23A1CD))
(comp (ref U25)
(value "74AHCT257PW,118 ")
(footprint Package_SO:TSSOP-16_4.4x5mm_P0.65mm)
(datasheet https://www.mouser.ca/datasheet/2/916/74HC_HCT257-1319849.pdf)
(libsource (lib 74xx) (part 74LS257) (description "Quad 2 to 1 Multiplexer"))
(sheetpath (names /) (tstamps /))
(tstamp 5E24AF23))
(comp (ref C25)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E24AF35))
(comp (ref C20)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECA394E))
(comp (ref C1)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A1186))
(comp (ref U1)
(value SN74HCT02PWR)
(footprint Package_SO:TSSOP-14_4.4x5mm_P0.65mm)
(datasheet http://www.ti.com/lit/gpn/sn74ls02)
(libsource (lib 74xx) (part 74LS02) (description "quad 2-input NOR gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBF224B))
(comp (ref U26)
(value 74HCT573PW,118)
(footprint Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm)
(datasheet 74xx/74hc573.pdf)
(libsource (lib 74xx) (part 74LS573) (description "8-bit Latch 3-state outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFA6C9C))
(comp (ref U20)
(value 74HCT163D,653)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS163)
(libsource (lib 74xx) (part 74LS163) (description "Synchronous 4-bit programmable binary Counter"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFA87C9))
(comp (ref U2)
(value SN74HCT04PWR)
(footprint Package_SO:TSSOP-14_4.4x5mm_P0.65mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT04.pdf)
(libsource (lib 74xx) (part 74HCT04) (description "hex inverter"))
(sheetpath (names /) (tstamps /))
(tstamp 600B31A9))
(comp (ref C2)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 600B8AEC))
(comp (ref U14)
(value "74AHCT257PW,118 ")
(footprint Package_SO:TSSOP-16_4.4x5mm_P0.65mm)
(datasheet https://www.mouser.ca/datasheet/2/916/74HC_HCT257-1319849.pdf)
(libsource (lib 74xx) (part 74LS257) (description "Quad 2 to 1 Multiplexer"))
(sheetpath (names /) (tstamps /))
(tstamp 600F92FC))
(comp (ref U3)
(value ADP122)
(footprint CPU2:LFCSP-6)
(datasheet https://www.mouser.ca/datasheet/2/609/ADP122_123-1503483.pdf)
(libsource (lib CPU2) (part ADP122_3.3V_LDO_Voltage_Regulator) (description "High Accuracy Ultralow IQ, 500mA anyCAP Adjustable Low Dropout Regulator, MSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFA4220))
(comp (ref C3B1)
(value 1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E027194))
(comp (ref C3A1)
(value 1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E027FD8))
(comp (ref C4)
(value 0.1uF)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E13ABF8))
(comp (ref J1)
(value JTAG-6)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical)
(libsource (lib CPU2) (part JTAG-6) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E15FBF9))
(comp (ref C0)
(value 22uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EA0A6E1))
(comp (ref U4)
(value XC9536XL_CPLD_Xilinx)
(footprint Package_QFP:TQFP-44_10x10mm_P0.8mm)
(datasheet https://www.mouser.ca/datasheet/2/903/ds058-1595624.pdf)
(libsource (lib CPU2) (part XC9536XL_CPLD_Xilinx) (description "Xilinx CPLD, Obsolete"))
(sheetpath (names /) (tstamps /))
(tstamp 5E06D6F4)))
(libparts
(libpart (lib 74xx) (part 74HCT04)
(aliases
(alias 74HC14)
(alias 74HC04)
(alias 74LS14))
(description "hex inverter")
(docs https://assets.nexperia.com/documents/data-sheet/74HC_HCT04.pdf)
(footprints
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) 74HCT04))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type output))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name ~) (type output))
(pin (num 9) (name ~) (type input))
(pin (num 10) (name ~) (type output))
(pin (num 11) (name ~) (type input))
(pin (num 12) (name ~) (type output))
(pin (num 13) (name ~) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS02)
(aliases
(alias 74HC02)
(alias 74HCT02)
(alias 7402)
(alias 74LS28))
(description "quad 2-input NOR gate")
(docs http://www.ti.com/lit/gpn/sn74ls02)
(footprints
(fp SO14*)
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) 74LS02))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type input))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name ~) (type input))
(pin (num 9) (name ~) (type input))
(pin (num 10) (name ~) (type output))
(pin (num 11) (name ~) (type input))
(pin (num 12) (name ~) (type input))
(pin (num 13) (name ~) (type output))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS139)
(description "Dual Decoder 1 of 4, Active low outputs")
(docs http://www.ti.com/lit/gpn/sn74LS139)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS139))
(pins
(pin (num 1) (name E) (type input))
(pin (num 2) (name A0) (type input))
(pin (num 3) (name A1) (type input))
(pin (num 4) (name O0) (type output))
(pin (num 5) (name O1) (type output))
(pin (num 6) (name O2) (type output))
(pin (num 7) (name O3) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name O3) (type output))
(pin (num 10) (name O2) (type output))
(pin (num 11) (name O1) (type output))
(pin (num 12) (name O0) (type output))
(pin (num 13) (name A1) (type input))
(pin (num 14) (name A0) (type input))
(pin (num 15) (name E) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS161)
(aliases
(alias 74LS160)
(alias 74LS162)
(alias 74LS163))
(description "Synchronous 4-bit programmable binary Counter")
(docs http://www.ti.com/lit/gpn/sn74LS161)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS161))
(pins
(pin (num 1) (name ~MR) (type input))
(pin (num 2) (name CP) (type input))
(pin (num 3) (name D0) (type input))
(pin (num 4) (name D1) (type input))
(pin (num 5) (name D2) (type input))
(pin (num 6) (name D3) (type input))
(pin (num 7) (name CEP) (type input))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name ~PE) (type input))
(pin (num 10) (name CET) (type input))
(pin (num 11) (name Q3) (type output))
(pin (num 12) (name Q2) (type output))
(pin (num 13) (name Q1) (type output))
(pin (num 14) (name Q0) (type output))
(pin (num 15) (name TC) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS257)
(description "Quad 2 to 1 Multiplexer")
(docs http://www.ti.com/lit/gpn/sn74LS257)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS257))
(pins
(pin (num 1) (name S) (type input))
(pin (num 2) (name I0a) (type input))
(pin (num 3) (name I1a) (type input))
(pin (num 4) (name Za) (type 3state))
(pin (num 5) (name I0b) (type input))
(pin (num 6) (name I1b) (type input))
(pin (num 7) (name Zb) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name Zd) (type 3state))
(pin (num 10) (name I1d) (type input))
(pin (num 11) (name I0d) (type input))
(pin (num 12) (name Zc) (type 3state))
(pin (num 13) (name I1c) (type input))
(pin (num 14) (name I0c) (type input))
(pin (num 15) (name OE) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS573)
(description "8-bit Latch 3-state outputs")
(docs 74xx/74hc573.pdf)
(footprints
(fp DIP?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS573))
(pins
(pin (num 1) (name OE) (type input))
(pin (num 2) (name D0) (type input))
(pin (num 3) (name D1) (type input))
(pin (num 4) (name D2) (type input))
(pin (num 5) (name D3) (type input))
(pin (num 6) (name D4) (type input))
(pin (num 7) (name D5) (type input))
(pin (num 8) (name D6) (type input))
(pin (num 9) (name D7) (type input))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name Load) (type input))
(pin (num 12) (name Q7) (type 3state))
(pin (num 13) (name Q6) (type 3state))
(pin (num 14) (name Q5) (type 3state))
(pin (num 15) (name Q4) (type 3state))
(pin (num 16) (name Q3) (type 3state))
(pin (num 17) (name Q2) (type 3state))
(pin (num 18) (name Q1) (type 3state))
(pin (num 19) (name Q0) (type 3state))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib CPU2) (part ADP122_3.3V_LDO_Voltage_Regulator)
(description "High Accuracy Ultralow IQ, 500mA anyCAP Adjustable Low Dropout Regulator, MSOP-8")
(docs https://www.mouser.ca/datasheet/2/609/ADP122_123-1503483.pdf)
(footprints
(fp MSOP*3x3mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) ADP122_3.3V_LDO_Voltage_Regulator)
(field (name Footprint) CPU2:LFCSP-6))
(pins
(pin (num 1) (name OUT) (type power_out))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name EN) (type input))
(pin (num 6) (name IN) (type power_in))
(pin (num EP) (name GND) (type power_in))))
(libpart (lib CPU2) (part C64_PLA)
(fields
(field (name Reference) U)
(field (name Value) C64_PLA)
(field (name Footprint) Package_DIP:DIP-28_W15.24mm))
(pins
(pin (num 2) (name A13) (type input))
(pin (num 3) (name A14) (type input))
(pin (num 4) (name A15) (type input))
(pin (num 5) (name VA14) (type input))
(pin (num 6) (name ~CHAREN) (type input))
(pin (num 7) (name ~HIRAM) (type input))
(pin (num 8) (name ~LORAM) (type input))
(pin (num 9) (name ~CAS) (type input))
(pin (num 10) (name ~ROMH~) (type output))
(pin (num 11) (name ~ROML~) (type output))
(pin (num 12) (name I/O) (type output))
(pin (num 13) (name GR/~W~) (type output))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name ~CHAROM~) (type output))
(pin (num 16) (name ~KERNAL~) (type output))
(pin (num 17) (name ~BASIC~) (type output))
(pin (num 18) (name ~CASRAM~) (type output))
(pin (num 19) (name ~OE~) (type input))
(pin (num 20) (name VA12) (type input))
(pin (num 21) (name VA13) (type input))
(pin (num 22) (name ~GAME~) (type input))
(pin (num 23) (name ~EXROM~) (type input))
(pin (num 24) (name R/~W~) (type input))
(pin (num 25) (name ~AEC) (type input))
(pin (num 26) (name BA) (type input))
(pin (num 27) (name A12) (type input))
(pin (num 28) (name Vcc) (type power_in))))
(libpart (lib CPU2) (part C64_PLA_C)
(fields
(field (name Reference) U)
(field (name Value) C64_PLA_C)
(field (name Footprint) Package_DIP:DIP-64_W22.86mm_LongPads))
(pins
(pin (num 1) (name A13) (type input))
(pin (num 2) (name A14) (type input))
(pin (num 3) (name A15) (type input))
(pin (num 4) (name R/~W) (type input))
(pin (num 5) (name ~LORAM) (type input))
(pin (num 6) (name ~HIRAM) (type input))
(pin (num 7) (name ~CHAREN) (type input))
(pin (num 8) (name NMI) (type input))
(pin (num 9) (name RESTORE) (type input))
(pin (num 10) (name VA14) (type input))
(pin (num 11) (name VA15) (type input))
(pin (num 12) (name ~CIA2) (type output))
(pin (num 13) (name ~CHAROM~) (type output))
(pin (num 14) (name ~BASIC~) (type output))
(pin (num 15) (name ~KERNAL~) (type output))
(pin (num 16) (name GND) (type power_in))
(pin (num 18) (name D1) (type BiDi))
(pin (num 19) (name D2) (type BiDi))
(pin (num 20) (name D3) (type BiDi))
(pin (num 21) (name D4) (type BiDi))
(pin (num 22) (name ~CASRAM~) (type output))
(pin (num 23) (name RAM-R/~W) (type output))
(pin (num 24) (name MA6) (type input))
(pin (num 25) (name MA3) (type input))
(pin (num 26) (name MA0) (type input))
(pin (num 27) (name MA2) (type input))
(pin (num 28) (name MA4) (type input))
(pin (num 29) (name MA1) (type input))
(pin (num 30) (name MA5) (type input))
(pin (num 31) (name MA7) (type input))
(pin (num 33) (name GND) (type power_in))
(pin (num 34) (name ~CIA1) (type output))
(pin (num 35) (name ~CAS) (type input))
(pin (num 36) (name ~RAS) (type input))
(pin (num 37) (name Phi0) (type input))
(pin (num 38) (name AEC) (type input))
(pin (num 39) (name BA) (type input))
(pin (num 40) (name ~VIC) (type input))
(pin (num 41) (name VA6) (type input))
(pin (num 42) (name VA7) (type input))
(pin (num 43) (name ~SID) (type output))
(pin (num 44) (name ~ROML) (type output))
(pin (num 45) (name I/O2) (type output))
(pin (num 46) (name ~EXROM~) (type input))
(pin (num 47) (name ~GAME~) (type input))
(pin (num 48) (name GND) (type power_in))
(pin (num 49) (name I/O1) (type output))
(pin (num 50) (name ~ROMH) (type output))
(pin (num 51) (name A0) (type input))
(pin (num 52) (name A1) (type input))
(pin (num 53) (name A2) (type input))
(pin (num 54) (name A3) (type input))
(pin (num 55) (name A4) (type input))
(pin (num 56) (name A5) (type input))
(pin (num 57) (name A6) (type input))
(pin (num 58) (name A7) (type input))
(pin (num 59) (name A8) (type input))
(pin (num 60) (name A9) (type input))
(pin (num 61) (name A10) (type input))
(pin (num 62) (name A11) (type input))
(pin (num 63) (name A12) (type input))
(pin (num 64) (name Vcc) (type power_in))))
(libpart (lib CPU2) (part IS62C256AL-45TLI)
(description "32K x 8 LOW POWER CMOS STATIC RAM, 45ns, TSOP I-28")
(docs https://www.mouser.ca/datasheet/2/198/62-65C256AL-258444.pdf)
(footprints
(fp TSOP*21.0x10.2mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) IS62C256AL-45TLI)
(field (name Footprint) Package_SO:TSOP-I-28_11.8x8mm_P0.55mm))
(pins
(pin (num 1) (name A14) (type input))
(pin (num 2) (name A12) (type input))
(pin (num 3) (name A7) (type input))
(pin (num 4) (name A6) (type input))
(pin (num 5) (name A5) (type input))
(pin (num 6) (name A4) (type input))
(pin (num 7) (name A3) (type input))
(pin (num 8) (name A2) (type input))
(pin (num 9) (name A1) (type input))
(pin (num 10) (name A0) (type input))
(pin (num 11) (name I/O0) (type BiDi))
(pin (num 12) (name I/O1) (type BiDi))
(pin (num 13) (name I/O2) (type BiDi))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name I/O3) (type BiDi))
(pin (num 16) (name I/O4) (type BiDi))
(pin (num 17) (name I/O5) (type BiDi))
(pin (num 18) (name I/O6) (type BiDi))
(pin (num 19) (name I/O7) (type BiDi))
(pin (num 20) (name ~CE) (type input))
(pin (num 21) (name A10) (type input))
(pin (num 22) (name ~OE) (type input))
(pin (num 23) (name A11) (type input))
(pin (num 24) (name A9) (type input))
(pin (num 25) (name A8) (type input))
(pin (num 26) (name A13) (type input))
(pin (num 27) (name ~WE) (type input))
(pin (num 28) (name VDD) (type power_in))))
(libpart (lib CPU2) (part JTAG-6)
(fields
(field (name Reference) J)
(field (name Value) JTAG-6)
(field (name Footprint) Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name TDI) (type BiDi))
(pin (num 3) (name Vcc) (type power_in))
(pin (num 4) (name TDO) (type BiDi))
(pin (num 6) (name TMS) (type BiDi))
(pin (num 8) (name TCK) (type BiDi))))
(libpart (lib CPU2) (part XC9536XL_CPLD_Xilinx)
(description "Xilinx CPLD, Obsolete")
(docs https://www.mouser.ca/datasheet/2/903/ds058-1595624.pdf)
(fields
(field (name Reference) U)
(field (name Value) XC9536XL_CPLD_Xilinx)
(field (name Footprint) Package_QFP:TQFP-44_10x10mm_P0.8mm))
(pins
(pin (num 1) (name IO/GCK3) (type BiDi))
(pin (num 2) (name B1M06) (type BiDi))
(pin (num 3) (name B1M08) (type BiDi))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name B1M09) (type BiDi))
(pin (num 6) (name B1M10) (type BiDi))
(pin (num 7) (name B1M11) (type BiDi))
(pin (num 8) (name B1M12) (type BiDi))
(pin (num 9) (name TDI) (type BiDi))
(pin (num 10) (name TMS) (type BiDi))
(pin (num 11) (name TCK) (type BiDi))
(pin (num 12) (name B1M13) (type BiDi))
(pin (num 13) (name B1M14) (type BiDi))
(pin (num 14) (name B1M15) (type BiDi))
(pin (num 15) (name VCC) (type power_in))
(pin (num 16) (name B1M16) (type BiDi))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name B1M17) (type BiDi))
(pin (num 19) (name B2M17) (type BiDi))
(pin (num 20) (name B2M16) (type BiDi))
(pin (num 21) (name B2M15) (type BiDi))
(pin (num 22) (name B2M14) (type BiDi))
(pin (num 23) (name B2M13) (type BiDi))
(pin (num 24) (name TDO) (type BiDi))
(pin (num 25) (name GND) (type power_in))
(pin (num 26) (name VCCIO) (type power_in))
(pin (num 27) (name B2M12) (type BiDi))
(pin (num 28) (name B2M11) (type BiDi))
(pin (num 29) (name B2M10) (type BiDi))
(pin (num 30) (name B2M09) (type BiDi))
(pin (num 31) (name B2M08) (type BiDi))
(pin (num 32) (name B2M07) (type BiDi))
(pin (num 33) (name IO/GSR) (type BiDi))
(pin (num 34) (name IO/GTS2) (type BiDi))
(pin (num 35) (name VCC) (type power_in))
(pin (num 36) (name IO/GTS1) (type BiDi))
(pin (num 37) (name B2M04) (type BiDi))
(pin (num 38) (name B2M02) (type BiDi))
(pin (num 39) (name B2M01) (type BiDi))
(pin (num 40) (name B1M01) (type BiDi))
(pin (num 41) (name B1M02) (type BiDi))
(pin (num 42) (name B1M04) (type BiDi))
(pin (num 43) (name IO/GCK1) (type BiDi))
(pin (num 44) (name IO/GCK2) (type BiDi))))
(libpart (lib Device) (part CP_Small)
(description "Polarized capacitor, small symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical 74xx)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/74xx.lib"))
(library (logical CPU2)
(uri C:/Users/Jay/Documents/KIKAD/_libs/CPU2.lib))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib")))
(nets
(net (code 1) (name "Net-(U1-Pad6)")
(node (ref U20) (pin 15))
(node (ref U1) (pin 6)))
(net (code 2) (name "Net-(U1-Pad1)")
(node (ref U1) (pin 1))
(node (ref U1) (pin 5)))
(net (code 3) (name +5V)
(node (ref U17) (pin 28))
(node (ref U8) (pin 64))
(node (ref C14) (pin 1))
(node (ref U20) (pin 16))
(node (ref U14) (pin 16))
(node (ref C26) (pin 1))
(node (ref U6) (pin 28))
(node (ref C3A1) (pin 1))
(node (ref C1) (pin 1))
(node (ref U25) (pin 16))
(node (ref U3) (pin 6))
(node (ref U3) (pin 4))
(node (ref C25) (pin 1))
(node (ref C20) (pin 1))
(node (ref U2) (pin 14))
(node (ref C0) (pin 1))
(node (ref C13) (pin 1))
(node (ref U1) (pin 14))
(node (ref C6) (pin 1))
(node (ref C15) (pin 1))
(node (ref U26) (pin 20))
(node (ref U15) (pin 16))
(node (ref U13) (pin 16))
(node (ref C2) (pin 1)))
(net (code 4) (name GND)
(node (ref U3) (pin 3))
(node (ref U3) (pin EP))
(node (ref U4) (pin 4))
(node (ref C26) (pin 2))
(node (ref U6) (pin 1))
(node (ref C14) (pin 2))
(node (ref C0) (pin 2))
(node (ref U4) (pin 25))
(node (ref U4) (pin 17))
(node (ref U6) (pin 26))
(node (ref U13) (pin 8))
(node (ref C6) (pin 2))
(node (ref U6) (pin 23))
(node (ref U6) (pin 21))
(node (ref U6) (pin 2))
(node (ref U6) (pin 14))
(node (ref C15) (pin 2))
(node (ref U15) (pin 8))
(node (ref C13) (pin 2))
(node (ref C4) (pin 2))
(node (ref C3A1) (pin 2))
(node (ref C3B1) (pin 2))
(node (ref U8) (pin 48))
(node (ref U17) (pin 19))
(node (ref U17) (pin 14))
(node (ref U8) (pin 33))
(node (ref U8) (pin 16))
(node (ref U14) (pin 8))
(node (ref J1) (pin 1))
(node (ref U25) (pin 8))
(node (ref U20) (pin 5))
(node (ref U20) (pin 4))
(node (ref U26) (pin 10))
(node (ref C25) (pin 2))
(node (ref C1) (pin 2))
(node (ref C20) (pin 2))
(node (ref U1) (pin 11))
(node (ref U1) (pin 12))
(node (ref U1) (pin 7))
(node (ref U2) (pin 11))
(node (ref U2) (pin 13))
(node (ref U2) (pin 7))
(node (ref U20) (pin 3))
(node (ref C2) (pin 2))
(node (ref U20) (pin 8))
(node (ref U20) (pin 6)))
(net (code 5) (name "Net-(U1-Pad2)")
(node (ref U8) (pin 9))
(node (ref U1) (pin 2)))
(net (code 6) (name "Net-(U1-Pad13)")
(node (ref U1) (pin 13)))
(net (code 7) (name /AEC)
(node (ref U8) (pin 38))
(node (ref U26) (pin 1))
(node (ref U14) (pin 15))
(node (ref U2) (pin 5)))
(net (code 8) (name /COLOR)
(node (ref U2) (pin 8))
(node (ref U1) (pin 9)))
(net (code 9) (name /~COLOR)
(node (ref U15) (pin 6))
(node (ref U2) (pin 9)))
(net (code 10) (name "Net-(U2-Pad10)")
(node (ref U2) (pin 10)))
(net (code 11) (name "Net-(U2-Pad12)")
(node (ref U2) (pin 12)))
(net (code 12) (name "Net-(U20-Pad11)")
(node (ref U20) (pin 11)))
(net (code 13) (name "Net-(U20-Pad12)")
(node (ref U20) (pin 12)))
(net (code 14) (name "Net-(U20-Pad13)")
(node (ref U20) (pin 13)))
(net (code 15) (name "Net-(U20-Pad14)")
(node (ref U20) (pin 14)))
(net (code 16) (name /Phi0)
(node (ref U20) (pin 2))
(node (ref U8) (pin 37)))
(net (code 17) (name /A8)
(node (ref U8) (pin 59))
(node (ref U25) (pin 14))
(node (ref U6) (pin 25))
(node (ref U15) (pin 14)))
(net (code 18) (name /A5)
(node (ref U8) (pin 56))
(node (ref U26) (pin 14))
(node (ref U13) (pin 6))
(node (ref U6) (pin 5)))
(net (code 19) (name /A13)
(node (ref U13) (pin 5))
(node (ref U4) (pin 28))
(node (ref U17) (pin 2))
(node (ref U8) (pin 1)))
(net (code 20) (name /A6)
(node (ref U13) (pin 3))
(node (ref U26) (pin 13))
(node (ref U8) (pin 57))
(node (ref U6) (pin 4)))
(net (code 21) (name /A14)
(node (ref U13) (pin 2))
(node (ref U4) (pin 29))
(node (ref U17) (pin 3))
(node (ref U8) (pin 2)))
(net (code 22) (name /A15)
(node (ref U17) (pin 4))
(node (ref U4) (pin 30))
(node (ref U13) (pin 11))
(node (ref U8) (pin 3)))
(net (code 23) (name /A7)
(node (ref U6) (pin 3))
(node (ref U26) (pin 12))
(node (ref U13) (pin 10))
(node (ref U8) (pin 58)))
(net (code 24) (name /A2)
(node (ref U6) (pin 8))
(node (ref U8) (pin 53))
(node (ref U25) (pin 6))
(node (ref U26) (pin 17)))
(net (code 25) (name /A10)
(node (ref U25) (pin 5))
(node (ref U15) (pin 2))
(node (ref U8) (pin 61)))
(net (code 26) (name /A3)
(node (ref U26) (pin 16))
(node (ref U25) (pin 3))
(node (ref U8) (pin 54))
(node (ref U6) (pin 7)))
(net (code 27) (name /A11)
(node (ref U8) (pin 62))
(node (ref U15) (pin 3))
(node (ref U25) (pin 2)))
(net (code 28) (name /A0)
(node (ref U6) (pin 10))
(node (ref U26) (pin 19))
(node (ref U8) (pin 51))
(node (ref U25) (pin 13)))
(net (code 29) (name /A12)
(node (ref U8) (pin 63))
(node (ref U13) (pin 14))
(node (ref U17) (pin 27))
(node (ref U4) (pin 23)))
(net (code 30) (name /A9)
(node (ref U25) (pin 11))
(node (ref U15) (pin 13))
(node (ref U8) (pin 60))
(node (ref U6) (pin 24)))
(net (code 31) (name /A1)
(node (ref U8) (pin 52))
(node (ref U6) (pin 9))
(node (ref U25) (pin 10))
(node (ref U26) (pin 18)))
(net (code 32) (name /VA6)
(node (ref U14) (pin 13))
(node (ref U8) (pin 41))
(node (ref U14) (pin 14))
(node (ref U13) (pin 4))
(node (ref U26) (pin 8)))
(net (code 33) (name /VA7)
(node (ref U8) (pin 42))
(node (ref U14) (pin 10))
(node (ref U14) (pin 11))
(node (ref U13) (pin 9))
(node (ref U26) (pin 9)))
(net (code 34) (name /MA3)
(node (ref U25) (pin 4))
(node (ref U26) (pin 5))
(node (ref U8) (pin 25)))
(net (code 35) (name /MA2)
(node (ref U8) (pin 27))
(node (ref U25) (pin 7))
(node (ref U26) (pin 4)))
(net (code 36) (name /MA1)
(node (ref U8) (pin 29))
(node (ref U25) (pin 9))
(node (ref U26) (pin 3)))
(net (code 37) (name /MA0)
(node (ref U26) (pin 2))
(node (ref U8) (pin 26))
(node (ref U25) (pin 12)))
(net (code 38) (name /A4)
(node (ref U6) (pin 6))
(node (ref U26) (pin 15))
(node (ref U13) (pin 13))
(node (ref U8) (pin 55)))
(net (code 39) (name /~AEC)
(node (ref U17) (pin 25))
(node (ref U13) (pin 15))
(node (ref U1) (pin 8))
(node (ref U25) (pin 15))
(node (ref U2) (pin 6))
(node (ref U4) (pin 22)))
(net (code 40) (name /NMI)
(node (ref U20) (pin 7))
(node (ref U20) (pin 9))
(node (ref U20) (pin 10))
(node (ref U20) (pin 1))
(node (ref U1) (pin 4))
(node (ref U1) (pin 3))
(node (ref U8) (pin 8)))
(net (code 41) (name /MA5)
(node (ref U26) (pin 7))
(node (ref U8) (pin 30))
(node (ref U13) (pin 7)))
(net (code 42) (name /MA4)
(node (ref U8) (pin 28))
(node (ref U26) (pin 6))
(node (ref U13) (pin 12)))
(net (code 43) (name /~CAS)
(node (ref U8) (pin 35))
(node (ref U13) (pin 1))
(node (ref U25) (pin 1))
(node (ref U17) (pin 9))
(node (ref U4) (pin 42))
(node (ref U14) (pin 1)))
(net (code 44) (name "Net-(U14-Pad2)")
(node (ref U14) (pin 2))
(node (ref U2) (pin 2)))
(net (code 45) (name /MA7)
(node (ref U8) (pin 31))
(node (ref U14) (pin 7)))
(net (code 46) (name /MA6)
(node (ref U8) (pin 24))
(node (ref U14) (pin 4)))
(net (code 55) (name "Net-(U4-Pad1)")
(node (ref U4) (pin 1)))
(net (code 56) (name "Net-(U4-Pad44)")
(node (ref U4) (pin 44)))
(net (code 57) (name /~BASIC)
(node (ref U8) (pin 14))
(node (ref U4) (pin 13))
(node (ref U17) (pin 17)))
(net (code 58) (name /~CASRAM)
(node (ref U17) (pin 18))
(node (ref U8) (pin 22))
(node (ref U4) (pin 12)))
(net (code 59) (name /~KERNAL)
(node (ref U4) (pin 8))
(node (ref U17) (pin 16))
(node (ref U8) (pin 15)))
(net (code 60) (name /~CHAROM)
(node (ref U8) (pin 13))
(node (ref U17) (pin 15))
(node (ref U4) (pin 7)))
(net (code 61) (name /GR~W)
(node (ref U6) (pin 27))
(node (ref U4) (pin 6))
(node (ref U17) (pin 13)))
(net (code 62) (name /IO)
(node (ref U4) (pin 5))
(node (ref U17) (pin 12))
(node (ref U15) (pin 1)))
(net (code 63) (name /~ROML)
(node (ref U4) (pin 3))
(node (ref U17) (pin 11))
(node (ref U8) (pin 44)))
(net (code 64) (name /~ROMH)
(node (ref U17) (pin 10))
(node (ref U8) (pin 50))
(node (ref U4) (pin 2)))
(net (code 65) (name /~LORAM)
(node (ref U4) (pin 41))
(node (ref U17) (pin 8))
(node (ref U8) (pin 5)))
(net (code 66) (name "Net-(U4-Pad39)")
(node (ref U4) (pin 39)))
(net (code 67) (name "Net-(U4-Pad38)")
(node (ref U4) (pin 38)))
(net (code 68) (name "Net-(U4-Pad36)")
(node (ref U4) (pin 36)))
(net (code 69) (name "Net-(U4-Pad40)")
(node (ref U4) (pin 40)))
(net (code 70) (name "Net-(U4-Pad43)")
(node (ref U4) (pin 43)))
(net (code 71) (name "Net-(J1-Pad6)")
(node (ref U4) (pin 10))
(node (ref J1) (pin 6)))
(net (code 72) (name "Net-(U4-Pad34)")
(node (ref U4) (pin 34)))
(net (code 73) (name "Net-(U4-Pad33)")
(node (ref U4) (pin 33)))
(net (code 74) (name "Net-(U4-Pad32)")
(node (ref U4) (pin 32)))
(net (code 75) (name "Net-(J1-Pad2)")
(node (ref U4) (pin 9))
(node (ref J1) (pin 2)))
(net (code 76) (name "Net-(U4-Pad26)")
(node (ref U4) (pin 35))
(node (ref U4) (pin 26)))
(net (code 77) (name /VA12)
(node (ref U17) (pin 20))
(node (ref U4) (pin 14)))
(net (code 78) (name /VA13)
(node (ref U17) (pin 21))
(node (ref U4) (pin 16)))
(net (code 79) (name /~GAME)
(node (ref U8) (pin 47))
(node (ref U4) (pin 18))
(node (ref U17) (pin 22)))
(net (code 80) (name /BA)
(node (ref U4) (pin 19))
(node (ref U8) (pin 39))
(node (ref U17) (pin 26)))
(net (code 81) (name /R~W)
(node (ref U4) (pin 20))
(node (ref U17) (pin 24))
(node (ref U8) (pin 4)))
(net (code 82) (name /~EXROM)
(node (ref U4) (pin 21))
(node (ref U8) (pin 46))
(node (ref U17) (pin 23)))
(net (code 83) (name "Net-(J1-Pad4)")
(node (ref J1) (pin 4))
(node (ref U4) (pin 24)))
(net (code 84) (name /~CHAREN)
(node (ref U17) (pin 6))
(node (ref U4) (pin 27))
(node (ref U8) (pin 7)))
(net (code 85) (name /VA14)
(node (ref U8) (pin 10))
(node (ref U17) (pin 5))
(node (ref U2) (pin 1))
(node (ref U4) (pin 31)))
(net (code 86) (name /~HIRAM)
(node (ref U4) (pin 37))
(node (ref U17) (pin 7))
(node (ref U8) (pin 6)))
(net (code 87) (name +3V3)
(node (ref C3B1) (pin 1))
(node (ref U4) (pin 15))
(node (ref U3) (pin 1))
(node (ref J1) (pin 3))
(node (ref C4) (pin 1)))
(net (code 88) (name "Net-(U14-Pad5)")
(node (ref U2) (pin 4))
(node (ref U14) (pin 5)))
(net (code 89) (name "Net-(U14-Pad6)")
(node (ref U14) (pin 9))
(node (ref U14) (pin 6)))
(net (code 90) (name "Net-(U14-Pad12)")
(node (ref U14) (pin 12))
(node (ref U14) (pin 3)))
(net (code 94) (name "Net-(J1-Pad8)")
(node (ref U4) (pin 11))
(node (ref J1) (pin 8)))
(net (code 96) (name /RAMR~W)
(node (ref U8) (pin 23)))
(net (code 97) (name /~VIC)
(node (ref U8) (pin 40))
(node (ref U15) (pin 4)))
(net (code 98) (name /~RAS)
(node (ref U26) (pin 11))
(node (ref U8) (pin 36)))
(net (code 99) (name /~CIA2)