-
Notifications
You must be signed in to change notification settings - Fork 2
/
c128-mmu-exp.kicad_pcb
18769 lines (18750 loc) · 727 KB
/
c128-mmu-exp.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/~{RESET}")
(net 2 "unconnected-(IC5-Pad3)")
(net 3 "unconnected-(IC5-Pad4)")
(net 4 "unconnected-(IC5-Pad5)")
(net 5 "unconnected-(IC5-Pad6)")
(net 6 "unconnected-(IC5-Pad7)")
(net 7 "unconnected-(IC5-Pad8)")
(net 8 "unconnected-(IC5-Pad9)")
(net 9 "unconnected-(IC5-Pad10)")
(net 10 "Net-(IC5-Pad11)")
(net 11 "Net-(IC5-Pad12)")
(net 12 "unconnected-(IC5-Pad13)")
(net 13 "unconnected-(IC5-Pad14)")
(net 14 "unconnected-(IC5-Pad15)")
(net 15 "/AEC")
(net 16 "/MUX")
(net 17 "/A0")
(net 18 "/A1")
(net 19 "/A2")
(net 20 "/A3")
(net 21 "/A5{slash}A4")
(net 22 "/A7{slash}A6")
(net 23 "/A8")
(net 24 "/A9")
(net 25 "/A10")
(net 26 "/A11")
(net 27 "/A12")
(net 28 "/A13")
(net 29 "/A14")
(net 30 "/A15")
(net 31 "/R{slash}~{W}")
(net 32 "/PHI_{IN}")
(net 33 "/D0")
(net 34 "/D1")
(net 35 "/D2")
(net 36 "/D3")
(net 37 "/D4")
(net 38 "/D5")
(net 39 "/D6")
(net 40 "/D7")
(net 41 "/~{Z80EN}")
(net 42 "/~{FSDIR}")
(net 43 "/~{GAME}")
(net 44 "/~{EXROM}")
(net 45 "/MS3")
(net 46 "/40{slash}~{80}")
(net 47 "/D0_{IC5}")
(net 48 "/D6_{IC5}")
(net 49 "Net-(IC6-Pad10)")
(net 50 "Net-(IC6-Pad13)")
(net 51 "Net-(IC7-Pad10)")
(net 52 "unconnected-(IC6-Pad7)")
(net 53 "unconnected-(IC6-Pad9)")
(net 54 "unconnected-(IC6-Pad11)")
(net 55 "unconnected-(IC6-Pad12)")
(net 56 "unconnected-(IC6-Pad14)")
(net 57 "Net-(IC6-Pad15)")
(net 58 "Net-(IC8-Pad6)")
(net 59 "Net-(IC7-Pad4)")
(net 60 "Net-(IC7-Pad6)")
(net 61 "Net-(IC9-Pad3)")
(net 62 "Net-(IC9-Pad6)")
(net 63 "/~{RAMCAS2}")
(net 64 "/~{RAMCAS3}")
(net 65 "/~{RAMCAS1}_{IN}")
(net 66 "/~{RAMCAS0}_{IN}")
(net 67 "/~{RAMCAS1}_{OUT}")
(net 68 "/~{RAMCAS0}_{OUT}")
(net 69 "/TA15")
(net 70 "/TA14")
(net 71 "/TA13")
(net 72 "/TA12")
(net 73 "/TA11")
(net 74 "/TA10")
(net 75 "/TA9")
(net 76 "/TA8")
(net 77 "/~{CAS1}")
(net 78 "/~{CAS0}")
(net 79 "/MS2,~{IOSEL}")
(net 80 "/MS1")
(net 81 "/MS0")
(net 82 "VCC")
(net 83 "GND")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 07d50e45-d343-4719-9ae4-db184b08433c)
(at 96.52 113.03 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/149d29e5-4239-4ef6-9d8f-f581996bba32")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 521edf26-4069-4007-93a4-e61729ebfeb1)
)
(fp_text value "U9-SOCKET" (at 1.905 1.27 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a14cb1d4-7278-4f10-a17d-509b0268290c)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bee7892b-4181-4e31-a29c-c747932edd5c)
)
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 0ea55f4f-2054-467c-a4bd-206dee89fee7))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2690f045-2c87-44f1-b67b-550ba834a90e))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 298f0d0b-9e65-4829-94e5-e3f74452f4ae))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 42f2fa80-4c06-4a5d-8889-6a0df21bae1d))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6cf51b74-7b70-4dd3-8bdd-5cea40cfd416))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp f7121b5a-68a6-47a4-86bf-16e2059b4c20))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 11a05a2a-837e-4750-b336-0396c5523a1f))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 2ee5eb8a-7bf7-4459-8a92-98056c67698c))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 52ac23e5-c2c1-474d-acca-55e2de191d57))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d1e28330-ff33-42f0-bffa-823f156dba73))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 384f9812-2fc4-4203-9e0f-fd81155cc9b7))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 671924c9-5e92-44f3-a507-f4f85036cd8e))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 86cb55e6-be60-4561-b854-6f92e5b4bc3a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9eace72f-1c11-4c91-809f-477d35475e16))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp bc3d9402-0d2f-4d61-855d-e37df84dfdec))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 67 "/~{RAMCAS1}_{OUT}") (pinfunction "Pin_1") (pintype "passive") (tstamp f7d6f532-ea44-4464-a2a7-aff9829fd0c1))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 68 "/~{RAMCAS0}_{OUT}") (pinfunction "Pin_2") (pintype "passive") (tstamp 70da5161-b301-4ec6-ab52-65957260abe3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 267e709d-8368-48eb-b3e2-fe0b14ca8bf3)
(at 69.845 109.21 90)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/9756e10d-5829-4c0f-855c-ff020ccbbd14")
(attr through_hole)
(fp_text reference "IC9" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83622ad6-7418-48fd-934c-34e824485158)
)
(fp_text value "74LS32" (at 3.81 7.625 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc59e61b-043c-4f9f-8e0a-333e9d13b15a)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b5f562a-ff8f-44be-be64-106d80019c98)
)
(fp_line (start 1.16 16.57) (end 6.46 16.57) (layer "F.SilkS") (width 0.12) (tstamp 20a100ca-6c5f-4024-a156-0f209774d65b))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 3fcf5151-8f43-4fbf-bbaa-b5cecf08d791))
(fp_line (start 1.16 -1.33) (end 1.16 16.57) (layer "F.SilkS") (width 0.12) (tstamp 5e071e03-8887-413d-8e74-9cd168c0724c))
(fp_line (start -1.33 -1.39) (end -1.33 16.63) (layer "F.SilkS") (width 0.12) (tstamp 6ca3ed2e-acb3-403f-ada3-19a5f4e7c40d))
(fp_line (start 8.95 16.63) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp ae1742d0-24a1-4980-a7bf-dbc0edcc9178))
(fp_line (start 6.46 16.57) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b2b57977-f119-4579-987f-276f6d86b114))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d77607c2-c700-4721-a5ce-e18ea5e23c97))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ef346a6b-0e5d-4a54-84f8-d8a45d5fa06c))
(fp_line (start -1.33 16.63) (end 8.95 16.63) (layer "F.SilkS") (width 0.12) (tstamp fed6f90d-bad6-4ed3-88e0-ec56bf3a399b))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c5d0f789-ee6e-4091-8246-05cab56ded17))
(fp_line (start -1.55 -1.6) (end -1.55 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 41ccef30-9916-4eb0-a0f8-4f361ab4e9af))
(fp_line (start 9.15 16.85) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 6cb7b048-bfdd-4200-996b-375103be50cf))
(fp_line (start -1.55 16.85) (end 9.15 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 7073a763-e532-4324-889e-0283bc9faa01))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 89db0c49-65b0-445f-919f-57c1d48be050))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2960946e-a2bd-4708-aae9-dbdd1fb5a295))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2aa8f967-5721-42dc-8d6f-c3bc6504e814))
(fp_line (start -1.27 16.57) (end 8.89 16.57) (layer "F.Fab") (width 0.1) (tstamp 57ba135e-8c64-415e-8115-3696817a93a2))
(fp_line (start -1.27 -1.33) (end -1.27 16.57) (layer "F.Fab") (width 0.1) (tstamp 631d7668-9e81-4df9-8783-49fba8eac3a6))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp 7c7cdca0-8569-42d3-a6d1-afb946e5ce46))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 801a57ba-4c97-4c2a-adda-7cdf0bc3752d))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 996c1f0b-6b8f-452a-aec7-b303ee8315ac))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp adbf7a8d-87f5-454e-98ec-3d31818b732b))
(fp_line (start 8.89 16.57) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp f359bd71-e9ca-486c-a0ce-631eeb6c8475))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(IC5-Pad11)") (pintype "input") (tstamp 50b72ea3-ca63-4ee0-8171-cba6d18baa31))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 65 "/~{RAMCAS1}_{IN}") (pintype "input") (tstamp 7f333c50-7206-4e78-9c17-a084ff2b742e))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 61 "Net-(IC9-Pad3)") (pintype "output") (tstamp 8383f811-3579-45f8-8076-0a7733a90d2d))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(IC5-Pad11)") (pintype "input") (tstamp 5069c225-a676-495c-9a98-46a6de00cf04))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "/~{RAMCAS0}_{IN}") (pintype "input") (tstamp a61595a3-ac74-491a-aa06-842f2c3c34e8))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "Net-(IC9-Pad6)") (pintype "output") (tstamp 15073640-daf3-4e13-847a-5ca3901f570b))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c8c5e07d-dc32-408f-a09b-f3e6d81d97d2))
(pad "8" thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 68 "/~{RAMCAS0}_{OUT}") (pintype "output") (tstamp e24d8328-6313-4c87-8c1b-4d8db10a46fd))
(pad "9" thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "/~{RAMCAS0}_{IN}") (pintype "input") (tstamp 1953a72b-dbd8-46f4-8424-a3eb18101eb5))
(pad "10" thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(IC5-Pad12)") (pintype "input") (tstamp f7222c91-1ed3-45b5-983e-3dd16f0fa28c))
(pad "11" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 67 "/~{RAMCAS1}_{OUT}") (pintype "output") (tstamp 1db458c4-a86d-40a5-ab04-3f6e8c448afd))
(pad "12" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 65 "/~{RAMCAS1}_{IN}") (pintype "input") (tstamp bc8778fd-05b4-4dfc-a798-bb9727e28689))
(pad "13" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(IC5-Pad12)") (pintype "input") (tstamp c4b1d6f5-f824-43f0-9afa-348f8b63dd21))
(pad "14" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp e4fdfebc-7b67-4d1a-9036-04f939e4dde7))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-48_W15.24mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 3448ff94-5357-4238-8fff-42378e598aa7)
(at 104.145 86.35 180)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/4a762a59-f8a5-4133-b061-0dbee57c462f")
(attr through_hole)
(fp_text reference "U7_SOCKET1" (at 11.43 -2.55) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8a1675a-dfef-41f9-ae33-37e37e6e93d2)
)
(fp_text value "8722_MMU" (at 7.62 60.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfbfe0bc-47e2-442e-9b9c-f75c0277cb36)
)
(fp_text user "${REFERENCE}" (at 11.435 29.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4825033a-d052-4629-8bdb-321714fea74b)
)
(fp_line (start 1.16 59.75) (end 14.08 59.75) (layer "F.SilkS") (width 0.12) (tstamp 491f5c7a-57bd-4ac6-b50f-2f81026e5901))
(fp_line (start 1.16 -1.33) (end 1.16 59.75) (layer "F.SilkS") (width 0.12) (tstamp 4fc7800e-5da9-4182-8df0-4aa148f03da1))
(fp_line (start 14.08 59.75) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 76d2f402-82dc-43e1-9dcd-62f9e781da7a))
(fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 81bd7fde-50ed-4877-95cd-a275afbfe370))
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f65508d4-0659-4bb8-9566-cb4fc3003e81))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6a1ad891-0286-4498-b770-14bc722d039a))
(fp_line (start -1.05 -1.55) (end -1.05 59.95) (layer "F.CrtYd") (width 0.05) (tstamp 3355e438-e7bc-47f3-ac15-b031f093b888))
(fp_line (start 16.3 -1.55) (end -1.05 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 70d38a27-c0b1-4665-9159-cc4731e7d01c))
(fp_line (start -1.05 59.95) (end 16.3 59.95) (layer "F.CrtYd") (width 0.05) (tstamp ce813233-7be9-440c-a60d-bf15ab29af73))
(fp_line (start 16.3 59.95) (end 16.3 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp f3f7a7e9-4892-48c5-986e-723f8fba0be4))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp 08e32778-5da4-420b-b8e9-24359767f2e8))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer "F.Fab") (width 0.1) (tstamp 6fac9a7d-e6af-41ac-b90a-7ff9ff09b7c3))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8258d142-e891-4f66-8500-040c46106150))
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer "F.Fab") (width 0.1) (tstamp b1791082-4b33-463d-95be-a16f6ca0d53f))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp e9b4bd61-d929-4cb1-a2f1-619c917fa096))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 2f6b04a8-6e57-4568-9331-8a6aff5c1402))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "/~{RESET}") (pinfunction "~{RESET}") (pintype "input") (tstamp f75fc90d-32a4-4434-9ac7-704c3b1dc766))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 69 "/TA15") (pinfunction "TA15") (pintype "tri_state") (tstamp 6c3b5f78-1bd5-4690-8705-b24bc1fc4d75))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 70 "/TA14") (pinfunction "TA14") (pintype "tri_state") (tstamp 693e828a-3d6c-4f5b-a43b-cdb95b3e9e2f))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 71 "/TA13") (pinfunction "TA13") (pintype "tri_state") (tstamp 0c3c6312-5662-46e9-a85d-a8d872b1163c))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 72 "/TA12") (pinfunction "TA12") (pintype "tri_state") (tstamp 5123141c-54f8-440d-9f01-6c615ae4995a))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 73 "/TA11") (pinfunction "TA11") (pintype "tri_state") (tstamp 6386a53c-cf38-41cf-a2de-c5e9241196c9))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 74 "/TA10") (pinfunction "TA10") (pintype "tri_state") (tstamp d5845557-bfa6-4bc5-8bcc-40c2ffb44599))
(pad "9" thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 75 "/TA9") (pinfunction "TA9") (pintype "tri_state") (tstamp bcd04f7d-76cb-47a8-baab-cbf559030b7a))
(pad "10" thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 76 "/TA8") (pinfunction "TA8") (pintype "tri_state") (tstamp 8f617f82-7006-4512-bf1a-b23aebf9c584))
(pad "11" thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 77 "/~{CAS1}") (pinfunction "~{CAS1}") (pintype "output") (tstamp c61d8b64-0471-42ab-b171-f1e3ebd6f8bf))
(pad "12" thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 78 "/~{CAS0}") (pinfunction "~{CAS0}") (pintype "output") (tstamp 3a11e3e4-f426-4bf4-ba7b-115fcc8d495d))
(pad "13" thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 79 "/MS2,~{IOSEL}") (pinfunction "MS2,~{IOSEL") (pintype "output") (tstamp aecd4de7-7e28-4658-8112-421fc0976e19))
(pad "14" thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 80 "/MS1") (pinfunction "MS1") (pintype "output") (tstamp 485c2d42-ff84-4bd5-9f04-0140c967606d))
(pad "15" thru_hole oval (at 0 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 81 "/MS0") (pinfunction "MS0") (pintype "output") (tstamp 47de4495-dbcb-44c6-8603-e2773b9e6964))
(pad "16" thru_hole oval (at 0 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/AEC") (pinfunction "AEC") (pintype "input") (tstamp c6635341-6c9f-4090-ae88-55d0c9f4f2bb))
(pad "17" thru_hole oval (at 0 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/MUX") (pinfunction "MUX") (pintype "input") (tstamp 1f781068-99bc-4295-ace0-5964714230b1))
(pad "18" thru_hole oval (at 0 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 660cbc5f-155f-4208-bbe6-6c0021adcaa6))
(pad "19" thru_hole oval (at 0 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A1") (pinfunction "A1") (pintype "input") (tstamp 49128d30-2087-4926-b52b-d07611fdff64))
(pad "20" thru_hole oval (at 0 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/A2") (pinfunction "A2") (pintype "input") (tstamp 3f6de5fe-10e4-4fe4-b053-4c55b09a86f1))
(pad "21" thru_hole oval (at 0 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/A3") (pinfunction "A3") (pintype "input") (tstamp a7037a02-e397-4485-8fa9-bc1838cef4cc))
(pad "22" thru_hole oval (at 0 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/A5{slash}A4") (pinfunction "A5/A4") (pintype "input") (tstamp e357f5c8-0dc5-48a7-962e-8d6fae321e30))
(pad "23" thru_hole oval (at 0 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/A7{slash}A6") (pinfunction "A7/A6") (pintype "input") (tstamp 9a20278a-c40c-419b-8ded-69d6751fde06))
(pad "24" thru_hole oval (at 0 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/A8") (pinfunction "A8") (pintype "input") (tstamp 4f230c55-557d-4179-9c39-47fa7102e5d9))
(pad "25" thru_hole oval (at 15.24 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A9") (pinfunction "A9") (pintype "input") (tstamp fb0ec5a3-fce2-43c6-8eae-fefbdcba38ef))
(pad "26" thru_hole oval (at 15.24 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/A10") (pinfunction "A10") (pintype "input") (tstamp 4fd004a2-6f9d-48c7-8937-9a4325d6486f))
(pad "27" thru_hole oval (at 15.24 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp 42cf10d2-90d9-4916-83a9-7f0be24008b6))
(pad "28" thru_hole oval (at 15.24 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A12") (pinfunction "A12") (pintype "input") (tstamp e2867dba-1eb5-4d5d-b47f-62edd43facb7))
(pad "29" thru_hole oval (at 15.24 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A13") (pinfunction "A13") (pintype "input") (tstamp 4157798b-1289-4286-b471-92757bf84264))
(pad "30" thru_hole oval (at 15.24 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A14") (pinfunction "A14") (pintype "input") (tstamp eca64928-59b9-4fc3-af15-025bee8bf302))
(pad "31" thru_hole oval (at 15.24 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/A15") (pinfunction "A15") (pintype "input") (tstamp 08ef8c72-8b90-4b9d-834c-afc4148db07d))
(pad "32" thru_hole oval (at 15.24 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/R{slash}~{W}") (pinfunction "R/~{W}") (pintype "input") (tstamp 042b5ce6-a1d9-4ead-8b3e-d5227cd8d68e))
(pad "33" thru_hole oval (at 15.24 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "/PHI_{IN}") (pinfunction "PHI_{IN}") (pintype "input") (tstamp 9e96279a-fd99-472a-b87a-7ff0860e5f06))
(pad "34" thru_hole oval (at 15.24 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp a80f1f75-163d-4dba-a5e6-1d53292edf34))
(pad "35" thru_hole oval (at 15.24 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/D0") (pinfunction "D0") (pintype "bidirectional") (tstamp 9171bde8-b6a3-4be3-a3d0-4fb9f8dd679a))
(pad "36" thru_hole oval (at 15.24 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/D1") (pinfunction "D1") (pintype "bidirectional") (tstamp b78554a2-d683-4e36-a85e-4d8e9c72fc84))
(pad "37" thru_hole oval (at 15.24 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/D2") (pinfunction "D2") (pintype "bidirectional") (tstamp 465b592d-cf01-4a63-b5c9-d553753c17a7))
(pad "38" thru_hole oval (at 15.24 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/D3") (pinfunction "D3") (pintype "bidirectional") (tstamp 3eebc73a-8b3e-4c29-b9d8-263bfc5e96bf))
(pad "39" thru_hole oval (at 15.24 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/D4") (pinfunction "D4") (pintype "bidirectional") (tstamp faf15f29-2388-4659-8553-380310674e36))
(pad "40" thru_hole oval (at 15.24 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/D5") (pinfunction "D5") (pintype "bidirectional") (tstamp ad1a1b68-d415-43cc-b375-2d5a4939b0c1))
(pad "41" thru_hole oval (at 15.24 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "/D6") (pinfunction "D6") (pintype "bidirectional") (tstamp 33a1be91-5e00-4c36-9b00-bea268a92e61))
(pad "42" thru_hole oval (at 15.24 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/D7") (pinfunction "D7") (pintype "bidirectional") (tstamp 7eed5b11-caf5-4e9c-9c7b-2222d9440124))
(pad "43" thru_hole oval (at 15.24 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "/~{Z80EN}") (pinfunction "~{Z80EN}") (pintype "bidirectional") (tstamp 28fd7ef6-5eb4-46b3-b35f-8981d03403b9))
(pad "44" thru_hole oval (at 15.24 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "/~{FSDIR}") (pinfunction "~{FSDIR}") (pintype "bidirectional") (tstamp 6514dd37-2b3b-4e1b-82fb-1af4f4926b93))
(pad "45" thru_hole oval (at 15.24 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/~{GAME}") (pinfunction "~{GAME}") (pintype "bidirectional") (tstamp 9b6d8de8-c6e9-4aa8-b065-235e2cac4b5a))
(pad "46" thru_hole oval (at 15.24 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "/~{EXROM}") (pinfunction "~{EXROM}") (pintype "bidirectional") (tstamp 9c730313-7a8c-46ab-9144-342f69dd5930))
(pad "47" thru_hole oval (at 15.24 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "/MS3") (pinfunction "MS3") (pintype "bidirectional") (tstamp 199b798a-5eb4-4760-bb89-6d6265cb9dd6))
(pad "48" thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "/40{slash}~{80}") (pinfunction "40/~{80}") (pintype "bidirectional") (tstamp 3a7792b0-794b-4c8a-8805-cb9dcd0442c7))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-48_W15.24mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-48_W15.24mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 4f9afeda-4302-41ad-a4a2-66d089ff7de4)
(at 85.095 86.35 180)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/b1043890-51c2-4ba6-b125-e1e37dea1f27")
(attr through_hole)
(fp_text reference "U7" (at 2.545 1.26) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 204f259e-0348-47cc-9f37-c815f649a73d)
)
(fp_text value "8722_MMU" (at 8.895 29.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp acab1683-bc49-4524-8858-46d36e752cb0)
)
(fp_text user "${REFERENCE}" (at 7.62 29.21) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef762192-6c12-4426-9eba-6b2dd92cf1f0)
)
(fp_line (start -1.33 59.81) (end 16.57 59.81) (layer "F.SilkS") (width 0.12) (tstamp 071ec60d-f4dd-425a-a322-f67d596c7167))
(fp_line (start 1.16 59.75) (end 14.08 59.75) (layer "F.SilkS") (width 0.12) (tstamp 14c99071-88d8-4136-aae6-516792630095))
(fp_line (start 1.16 -1.33) (end 1.16 59.75) (layer "F.SilkS") (width 0.12) (tstamp 31e1ab60-6ec2-467f-830b-f24a0801d882))
(fp_line (start 16.57 59.81) (end 16.57 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 49494da6-0e13-4951-aaa2-f48758c40bba))
(fp_line (start 16.57 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 4d207add-55d1-4a24-9ea6-75c54398bf6a))
(fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7b2b75c1-8120-4c91-8c22-299b16308265))
(fp_line (start -1.33 -1.39) (end -1.33 59.81) (layer "F.SilkS") (width 0.12) (tstamp 928e3668-5229-4590-9e0b-67719729c2e3))
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ae45bc01-e6f8-46d4-ba7b-ebb52d9520b7))
(fp_line (start 14.08 59.75) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b20edca8-3c7f-4733-9089-92680caff86e))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp befc1277-5b7c-45b8-be37-b08f2ad48017))
(fp_line (start 16.8 60) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 17bcbfd9-9352-4f3d-8852-1e3bdecd1b6d))
(fp_line (start -1.55 60) (end 16.8 60) (layer "F.CrtYd") (width 0.05) (tstamp 3d8d1bd7-0d4c-405e-a358-258745bb8e48))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp d5ea6a3d-a295-4219-a5bb-b28a85a3d8cc))
(fp_line (start -1.55 -1.6) (end -1.55 60) (layer "F.CrtYd") (width 0.05) (tstamp e0c8461e-838d-42f9-b6c5-e2ad05aa3c5e))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 2725aaed-4fa5-40d7-aa30-958f07077e48))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2c507bd6-48ac-4fc6-80dc-0ee26d174af9))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer "F.Fab") (width 0.1) (tstamp 526a3392-fb7d-4eee-88ff-62323e600c1d))
(fp_line (start 16.51 59.75) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp 99940e1d-41fa-4765-bfd7-b5d79787b339))
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer "F.Fab") (width 0.1) (tstamp 9f0ddcc2-0b92-4530-a3ed-84eb19854172))
(fp_line (start -1.27 59.75) (end 16.51 59.75) (layer "F.Fab") (width 0.1) (tstamp b6a14499-b996-49ec-917b-67774ebfe467))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp e95e5bba-042a-4d85-afc8-baf15171d490))
(fp_line (start -1.27 -1.33) (end -1.27 59.75) (layer "F.Fab") (width 0.1) (tstamp f1395cea-f597-494f-a58e-97fbce962666))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp f825b447-43b4-4f7a-beba-ffc47d2a79d0))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 4decd86c-2e64-4aff-b14b-3ac3cafbbc4d))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "/~{RESET}") (pinfunction "~{RESET}") (pintype "input") (tstamp f360e48d-c832-45f5-96a5-a7aef9425fa0))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 69 "/TA15") (pinfunction "TA15") (pintype "tri_state") (tstamp 39214686-09ee-4f94-95b6-005e1c4b0546))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 70 "/TA14") (pinfunction "TA14") (pintype "tri_state") (tstamp 77e9fd12-bdc8-4095-a64c-31f2f0b53f64))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 71 "/TA13") (pinfunction "TA13") (pintype "tri_state") (tstamp e98146cb-9404-47d3-90ab-5af4972cc17b))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 72 "/TA12") (pinfunction "TA12") (pintype "tri_state") (tstamp 351d140e-87c4-45f7-baaa-af633a33adb2))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 73 "/TA11") (pinfunction "TA11") (pintype "tri_state") (tstamp 370310ed-e8d2-4fa3-94e4-f99f58d1a1fd))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 74 "/TA10") (pinfunction "TA10") (pintype "tri_state") (tstamp 29d0205c-f28d-4151-93f7-43b1f2a3f65b))
(pad "9" thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 75 "/TA9") (pinfunction "TA9") (pintype "tri_state") (tstamp 5ddb2fff-0bed-41e1-8332-1b806baabeed))
(pad "10" thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 76 "/TA8") (pinfunction "TA8") (pintype "tri_state") (tstamp 33590da5-b51b-4801-bede-cdf93f0811bc))
(pad "11" thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 77 "/~{CAS1}") (pinfunction "~{CAS1}") (pintype "output") (tstamp e7eb0d91-f7ef-4193-95b0-40d551d920ba))
(pad "12" thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 78 "/~{CAS0}") (pinfunction "~{CAS0}") (pintype "output") (tstamp 197d4fd3-9462-405e-abd0-9095e7ff8b0c))
(pad "13" thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 79 "/MS2,~{IOSEL}") (pinfunction "MS2,~{IOSEL") (pintype "output") (tstamp 3b0de947-b962-492c-a0fd-e98d28d41049))
(pad "14" thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 80 "/MS1") (pinfunction "MS1") (pintype "output") (tstamp ad109e9d-b0ee-4c93-a29a-0b40998842d7))
(pad "15" thru_hole oval (at 0 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 81 "/MS0") (pinfunction "MS0") (pintype "output") (tstamp 88b71bbc-73ef-4a42-b61a-530e70f4489c))
(pad "16" thru_hole oval (at 0 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/AEC") (pinfunction "AEC") (pintype "input") (tstamp 20f4e70a-ab3d-4799-9c36-25e9e8b5fae5))
(pad "17" thru_hole oval (at 0 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/MUX") (pinfunction "MUX") (pintype "input") (tstamp f4dfe3bf-ef69-40cc-bf97-700c1f93bce9))
(pad "18" thru_hole oval (at 0 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 35f8da46-4ccf-4f27-8937-dcbbda75cc32))
(pad "19" thru_hole oval (at 0 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A1") (pinfunction "A1") (pintype "input") (tstamp 76362a06-3be9-41b3-a821-d094628ed7d0))
(pad "20" thru_hole oval (at 0 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/A2") (pinfunction "A2") (pintype "input") (tstamp b84523d4-d880-4ee2-b297-196107c24166))
(pad "21" thru_hole oval (at 0 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/A3") (pinfunction "A3") (pintype "input") (tstamp cff80494-fdd7-4296-84bf-fc523f6bd365))
(pad "22" thru_hole oval (at 0 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/A5{slash}A4") (pinfunction "A5/A4") (pintype "input") (tstamp e6f54367-695c-486e-ad98-2508e83b7e92))
(pad "23" thru_hole oval (at 0 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/A7{slash}A6") (pinfunction "A7/A6") (pintype "input") (tstamp 35801565-d8bb-42fb-922a-2a055c8f2f8b))
(pad "24" thru_hole oval (at 0 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/A8") (pinfunction "A8") (pintype "input") (tstamp 1995e4e4-9f2e-473d-9fd5-b84c5ce12c97))
(pad "25" thru_hole oval (at 15.24 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A9") (pinfunction "A9") (pintype "input") (tstamp 983c15b0-885a-49ec-8c90-3c8582ee6d75))
(pad "26" thru_hole oval (at 15.24 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/A10") (pinfunction "A10") (pintype "input") (tstamp bdcacbad-4ad9-4650-b933-d2334ac9b568))
(pad "27" thru_hole oval (at 15.24 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp 1b79fe6c-7dc4-4e11-aea4-d808633db77f))
(pad "28" thru_hole oval (at 15.24 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A12") (pinfunction "A12") (pintype "input") (tstamp b1c93855-d70e-441d-a147-c8680453a110))
(pad "29" thru_hole oval (at 15.24 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A13") (pinfunction "A13") (pintype "input") (tstamp ea201409-1684-466e-8b2a-022a6e6f8dab))
(pad "30" thru_hole oval (at 15.24 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A14") (pinfunction "A14") (pintype "input") (tstamp feaddd8a-0c11-4e88-8b7b-93ca55dd66af))
(pad "31" thru_hole oval (at 15.24 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/A15") (pinfunction "A15") (pintype "input") (tstamp c9f5957a-64b8-4040-98a0-3a6881ced760))
(pad "32" thru_hole oval (at 15.24 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/R{slash}~{W}") (pinfunction "R/~{W}") (pintype "input") (tstamp 8d62bee6-51d5-4b21-8c1f-f0740a6d80eb))
(pad "33" thru_hole oval (at 15.24 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "/PHI_{IN}") (pinfunction "PHI_{IN}") (pintype "input") (tstamp e61c1f6f-23cd-48f3-a726-da52904029e8))
(pad "34" thru_hole oval (at 15.24 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 8ff0da23-131f-45df-a495-e487a342615b))
(pad "35" thru_hole oval (at 15.24 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/D0") (pinfunction "D0") (pintype "bidirectional") (tstamp 06f31891-5bbb-4ff8-980c-112bc9ce6ce9))
(pad "36" thru_hole oval (at 15.24 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/D1") (pinfunction "D1") (pintype "bidirectional") (tstamp b81a1eff-48c9-416e-a398-11055fef28cd))
(pad "37" thru_hole oval (at 15.24 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/D2") (pinfunction "D2") (pintype "bidirectional") (tstamp a940b3fd-12a9-492d-a4b0-7a2d76aaf9a6))
(pad "38" thru_hole oval (at 15.24 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/D3") (pinfunction "D3") (pintype "bidirectional") (tstamp 7a3cb8db-065e-49d6-8944-9f80a3b15f86))
(pad "39" thru_hole oval (at 15.24 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/D4") (pinfunction "D4") (pintype "bidirectional") (tstamp cafd08e8-caba-48a4-b113-610144794235))
(pad "40" thru_hole oval (at 15.24 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/D5") (pinfunction "D5") (pintype "bidirectional") (tstamp fbb91674-9466-47d5-b395-26d3c5c15fe8))
(pad "41" thru_hole oval (at 15.24 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "/D6") (pinfunction "D6") (pintype "bidirectional") (tstamp 22d9f030-4c7f-4200-91a3-e54d1d288166))
(pad "42" thru_hole oval (at 15.24 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/D7") (pinfunction "D7") (pintype "bidirectional") (tstamp 4fab598e-e715-4468-94b9-61234bfd0ea2))
(pad "43" thru_hole oval (at 15.24 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "/~{Z80EN}") (pinfunction "~{Z80EN}") (pintype "bidirectional") (tstamp d2087f1e-a39a-4b04-8da5-333d55370ba5))
(pad "44" thru_hole oval (at 15.24 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "/~{FSDIR}") (pinfunction "~{FSDIR}") (pintype "bidirectional") (tstamp 47e8a13f-4465-42a5-813c-d7e3b91508d2))
(pad "45" thru_hole oval (at 15.24 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/~{GAME}") (pinfunction "~{GAME}") (pintype "bidirectional") (tstamp 5cabea03-0746-4cc2-8a30-75578cc56fe3))
(pad "46" thru_hole oval (at 15.24 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "/~{EXROM}") (pinfunction "~{EXROM}") (pintype "bidirectional") (tstamp 4773962d-1fd6-4c8f-afc6-daa0a0b527d2))
(pad "47" thru_hole oval (at 15.24 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "/MS3") (pinfunction "MS3") (pintype "bidirectional") (tstamp 6acb5221-f7ca-45fa-920f-0ae7d244638a))
(pad "48" thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "/40{slash}~{80}") (pinfunction "40/~{80}") (pintype "bidirectional") (tstamp 98fd7612-9f8a-4cdf-af95-13ad8adc7f8e))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-48_W15.24mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 8b545a21-41e1-47f1-a0e1-6f2b98e17071)
(at 69.845 97.78 90)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/3e2bce02-986a-4a95-b830-efb326cfd6cb")
(attr through_hole)
(fp_text reference "IC8" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fdf59bb-e85b-463f-ab46-a73247362ea3)
)
(fp_text value "4066" (at 3.81 7.625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 878caca8-9b31-4ed3-8b42-e1e4eb65b046)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63654e1a-559c-43a3-9692-42c31b51d9f6)
)
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 2e642c8e-3a8c-40b7-9e30-08b45de338f0))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 49de5c15-d7ca-439a-8cf4-7ecd3180e9f2))
(fp_line (start -1.33 16.63) (end 8.95 16.63) (layer "F.SilkS") (width 0.12) (tstamp 67c78c8a-f58a-42ba-83cf-7fcc932aaefd))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6e1eca47-544b-4efd-ac85-2a1f754cf747))
(fp_line (start 1.16 -1.33) (end 1.16 16.57) (layer "F.SilkS") (width 0.12) (tstamp a1c41a40-11e7-425a-bae5-913bcd694138))
(fp_line (start 1.16 16.57) (end 6.46 16.57) (layer "F.SilkS") (width 0.12) (tstamp b5ef6dd9-d5f5-4502-bd31-18d2fc47a182))
(fp_line (start 6.46 16.57) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b7114d6a-f007-4939-a31a-578f8fe3432a))
(fp_line (start 8.95 16.63) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp dbbe1a5d-a80d-4658-9ea8-2572382603e0))
(fp_line (start -1.33 -1.39) (end -1.33 16.63) (layer "F.SilkS") (width 0.12) (tstamp f04ff0b6-0caf-4d81-a8ce-72c5dd50bb3b))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f26e6674-e5e0-46e3-a2f0-f8bb0200ce53))
(fp_line (start -1.55 -1.6) (end -1.55 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 1d1f8be8-b3e0-4ad2-94a0-c6c130f1912c))
(fp_line (start -1.55 16.85) (end 9.15 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 2c4dc9db-54ea-4e70-ad34-4226e82a758f))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 4c4fff1c-b3c8-40a6-b373-cf4acd0e196c))
(fp_line (start 9.15 16.85) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp a8884d6d-78b1-4523-9f3a-3429a26cbd8a))
(fp_line (start -1.27 16.57) (end 8.89 16.57) (layer "F.Fab") (width 0.1) (tstamp 028cd412-f10e-49c5-a17b-c9f7b163aae8))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp 02c18004-7281-4946-b7e7-745c6edca37e))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 036434bf-007a-472c-a5d0-5957a34a8d85))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 12769aee-6c8e-4486-b969-0a698085e0a7))
(fp_line (start 8.89 16.57) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 37c0d111-a68d-4c2e-ab6e-0c18c6a5b804))
(fp_line (start -1.27 -1.33) (end -1.27 16.57) (layer "F.Fab") (width 0.1) (tstamp 403d8e50-19ef-434c-814b-b6232943cb56))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 80b298d9-7123-489a-8e1a-9b66172e1496))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 84d23ee7-f367-4710-9ff1-3545d8db47e0))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fa7724c1-8844-4bd8-9ed2-471067a9e6e0))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/D0_{IC5}") (pintype "passive") (tstamp 3806fce5-8873-4abe-8cd6-45efc7816334))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/D0") (pintype "passive") (tstamp 5de24bee-e276-4a15-bb51-27cf2436b6c0))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/D1") (pintype "passive") (tstamp 61f6a1c8-ff63-4b19-a814-4dfe90c9803f))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/D0_{IC5}") (pintype "passive") (tstamp e8e1d2d6-6d04-4a1b-89fb-e680685783c2))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 60 "Net-(IC7-Pad6)") (pintype "input") (tstamp a53b4b63-17e6-45b2-8274-7a1f8d8542f2))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 58 "Net-(IC8-Pad6)") (pintype "input") (tstamp 55b9771d-1dea-43c0-99d8-627c18a75273))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 10ffb394-ea1d-4834-b349-ba5531b93046))
(pad "8" thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "/D6") (pintype "passive") (tstamp 2139f137-cfcc-43cd-a256-031fed17ba71))
(pad "9" thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/D6_{IC5}") (pintype "passive") (tstamp d1c85f5f-8e33-4d7e-bceb-0403aba44473))
(pad "10" thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/D6_{IC5}") (pintype "passive") (tstamp ca2972e4-6e31-4c21-8629-047c8a9daf4d))
(pad "11" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/D7") (pintype "passive") (tstamp bdf467c4-6268-4842-8ea0-3bb4c6bcce40))
(pad "12" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "Net-(IC6-Pad10)") (pintype "input") (tstamp bba6510b-ac68-41b9-b970-4dc196113bdb))
(pad "13" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 59 "Net-(IC7-Pad4)") (pintype "input") (tstamp f5b5de46-bdc8-4f83-af76-3344943989d1))
(pad "14" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 6b7a1f7d-391d-47b6-8fba-9d9da3a4f5dd))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-16_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 9fc1517b-b328-466d-b53f-77fe16e48e0a)
(at 93.98 109.22 90)
(descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/3a8bd7d9-8b96-4be6-94a2-e57542359d6d")
(attr through_hole)
(fp_text reference "IC6" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb51a2f0-fd1d-47fe-8c93-e8ad3b85a8b1)
)
(fp_text value "74LS138" (at 3.81 8.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d40bedec-6f23-4bac-977b-63266e94446d)
)
(fp_text user "${REFERENCE}" (at 3.81 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f673fcc5-003d-4d40-9eec-76055bf28232)
)
(fp_line (start -1.33 19.17) (end 8.95 19.17) (layer "F.SilkS") (width 0.12) (tstamp 220196f8-3583-4725-a8bb-0640e91cdb5f))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3e420629-7da8-4a4d-af92-720016ca0235))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4f94f807-fbb0-47c8-9d15-8eadbf6c0eff))
(fp_line (start -1.33 -1.39) (end -1.33 19.17) (layer "F.SilkS") (width 0.12) (tstamp 99363461-5f53-4e89-8089-f7351b658d5d))
(fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer "F.SilkS") (width 0.12) (tstamp a42932c3-0606-4f44-8ef0-897744089a5b))
(fp_line (start 1.16 19.11) (end 6.46 19.11) (layer "F.SilkS") (width 0.12) (tstamp a5aea78a-e682-488f-a755-719c3c466d60))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp a8fb6c27-d955-463b-9eb0-9b9eb27e5a16))
(fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d5cda55f-16be-4aba-8640-9737deafda8f))
(fp_line (start 8.95 19.17) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp f81ee2ca-c822-47fe-8e42-494a45183dfc))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6a482efe-e0bb-4856-b805-df7eaac567d6))
(fp_line (start -1.55 19.4) (end 9.15 19.4) (layer "F.CrtYd") (width 0.05) (tstamp 07b07e95-5af7-43b4-8fd2-10579ac11b7b))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 13ee3edc-0bbf-452a-a112-e21b3d3d22f5))
(fp_line (start -1.55 -1.6) (end -1.55 19.4) (layer "F.CrtYd") (width 0.05) (tstamp 276b880e-eda9-454b-8e43-c7f67df91305))
(fp_line (start 9.15 19.4) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp a757fa21-3543-498f-ab46-8472292f58ef))
(fp_line (start 6.985 19.05) (end 0.635 19.05) (layer "F.Fab") (width 0.1) (tstamp 0b800ade-8c38-4260-854f-c4e287ab3ff0))
(fp_line (start -1.27 -1.33) (end -1.27 19.11) (layer "F.Fab") (width 0.1) (tstamp 0f45bd0a-f4a1-410a-847f-a522b3a77a9c))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 4590cb3e-4771-41e1-a4e7-21793843e7e2))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6f94fbd2-e21b-4c86-b3ae-0f03286a2133))
(fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer "F.Fab") (width 0.1) (tstamp 73535299-aaaa-411b-baba-ce4c0aa44838))
(fp_line (start -1.27 19.11) (end 8.89 19.11) (layer "F.Fab") (width 0.1) (tstamp 7bad72e8-ca2f-4999-8df5-0056d716afdc))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8df0a9f2-21d7-4c2d-a356-a526ddb5929d))
(fp_line (start 8.89 19.11) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp e8aa2bc7-5153-4388-8bac-2586c75392b6))
(fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp eb94dca2-b8e2-4efa-a88b-b55799ba507f))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 67906b44-2172-4130-9dfb-e70e9618487c))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A1") (pinfunction "A1") (pintype "input") (tstamp 9e81ed87-b7ba-49cd-af47-fa77d68a8608))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/A2") (pinfunction "A2") (pintype "input") (tstamp e6c861a2-a09c-4e56-9325-ce48d4af8135))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "E1") (pintype "input") (tstamp 9cb87721-b63d-4d27-aedd-4245766ea299))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "E2") (pintype "input") (tstamp 6f120969-1c6f-47f1-93d1-27b2fc04eb2b))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "E3") (pintype "input") (tstamp 7ab27864-10ce-4aec-a1b8-dcb94ae4e951))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "unconnected-(IC6-Pad7)") (pinfunction "O7") (pintype "output+no_connect") (tstamp d70a0afc-011a-4983-8ab0-22f5cb7e8cb5))
(pad "8" thru_hole oval (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dc907101-793d-4bbb-b3a4-3e2a1b02b007))
(pad "9" thru_hole oval (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "unconnected-(IC6-Pad9)") (pinfunction "O6") (pintype "output+no_connect") (tstamp f19626e5-1bf5-45cb-8434-f40f4dfb8311))
(pad "10" thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "Net-(IC6-Pad10)") (pinfunction "O5") (pintype "output") (tstamp b3e3d1a6-729c-43cf-8636-e6bc16e027d0))
(pad "11" thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 "unconnected-(IC6-Pad11)") (pinfunction "O4") (pintype "output+no_connect") (tstamp 4c7dfaa0-4246-4e1e-85b6-c12346ec89bc))
(pad "12" thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "unconnected-(IC6-Pad12)") (pinfunction "O3") (pintype "output+no_connect") (tstamp 0e67a886-c588-452d-b1e0-c58a513e1762))
(pad "13" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 "Net-(IC6-Pad13)") (pinfunction "O2") (pintype "output") (tstamp 384d9852-ae87-43d5-8945-fb2a79da78b6))
(pad "14" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "unconnected-(IC6-Pad14)") (pinfunction "O1") (pintype "output+no_connect") (tstamp 4a45d06d-cf7f-4d13-9646-a26e14757a34))
(pad "15" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "Net-(IC6-Pad15)") (pinfunction "O0") (pintype "output") (tstamp 76558e4e-7758-416a-8c0f-db512b079822))
(pad "16" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp d53338ff-ae50-4f2e-a3fa-90b175a0c8b8))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-48_W15.24mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp aed232ef-ae50-4351-8e74-d00f34a427c3)
(at 111.765 86.35 180)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/069218e8-5c43-4723-8cdb-3551f5819149")
(attr through_hole)
(fp_text reference "IC5" (at 2.545 1.26) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0c5e102-fa8e-41ca-bb79-c9ed4da38b60)
)
(fp_text value "8722_MMU" (at 7.62 29.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bae1193f-f2ba-4395-8b92-8bc29244f7a7)
)
(fp_text user "${REFERENCE}" (at 3.815 29.21) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8615c8f1-f2d0-4689-8088-99d29e164e80)
)
(fp_line (start 16.57 59.81) (end 16.57 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 0280cfad-4fda-4cc6-b39a-a395b899cc62))
(fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 13d99cab-9c3d-4b24-b8ca-99fd0c20c94c))
(fp_line (start 14.08 59.75) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2d6bbcb6-a092-4946-ae62-a0e347ef2fc0))
(fp_line (start -1.33 -1.39) (end -1.33 59.81) (layer "F.SilkS") (width 0.12) (tstamp 395b100d-8009-4d96-8388-6103ebb29d9b))
(fp_line (start 1.16 -1.33) (end 1.16 59.75) (layer "F.SilkS") (width 0.12) (tstamp 410b0c79-9f3d-4d88-a8fa-b143dc84d2dc))
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6e08d984-5b49-484c-b5bc-316959daf115))
(fp_line (start -1.33 59.81) (end 16.57 59.81) (layer "F.SilkS") (width 0.12) (tstamp e5f9d9cf-a799-4e15-8fb3-307cdf733df3))
(fp_line (start 1.16 59.75) (end 14.08 59.75) (layer "F.SilkS") (width 0.12) (tstamp f30adb24-0f19-46c5-869a-8abba2d08fa3))
(fp_line (start 16.57 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp ffed1e54-dd47-4ebf-aa1d-4d6c3d47b7cb))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp de129729-2788-4d0b-9439-a22ef5769d74))
(fp_line (start -1.55 -1.6) (end -1.55 60) (layer "F.CrtYd") (width 0.05) (tstamp 6ba701cd-1cbe-413b-bb40-98afb913a27f))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 8d3a1a19-d55a-4182-8379-6e978a4f548b))
(fp_line (start 16.8 60) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp b9300089-5b74-4f9e-a925-f210280a1d60))
(fp_line (start -1.55 60) (end 16.8 60) (layer "F.CrtYd") (width 0.05) (tstamp f26206a1-8a97-4249-9cb2-21e3d520101c))
(fp_line (start -1.27 59.75) (end 16.51 59.75) (layer "F.Fab") (width 0.1) (tstamp 2ef03d6c-ad68-4b50-8dc4-7055674785f8))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp 30506a15-ae4b-4d0c-95ec-d9dee702d775))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 56d69227-0d7d-4a6f-90ec-0d4ea35253dc))
(fp_line (start -1.27 -1.33) (end -1.27 59.75) (layer "F.Fab") (width 0.1) (tstamp 57260c47-8d35-43fc-8742-fa1c07dcdc2a))
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer "F.Fab") (width 0.1) (tstamp 6c89d161-6898-4cbd-8cbe-9d2cb748e912))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7618b56d-d873-417e-973d-c62bf7b7808b))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 8a907c1e-7ef0-45bc-885b-d7d0e1815196))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer "F.Fab") (width 0.1) (tstamp aaa51f7a-72f3-41c1-a320-d6c5550d1324))
(fp_line (start 16.51 59.75) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp d345cc59-5e7d-414f-b97a-bc82b12f666c))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 14966c89-46f7-4e7a-9e04-a9fdd4deabdd))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "/~{RESET}") (pinfunction "~{RESET}") (pintype "input") (tstamp 2ecca8ff-3a71-4d7e-8a84-1fddb7e1f88d))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "unconnected-(IC5-Pad3)") (pinfunction "TA15") (pintype "tri_state+no_connect") (tstamp 542227a3-ab02-43a6-81a3-d2e25bf0231b))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "unconnected-(IC5-Pad4)") (pinfunction "TA14") (pintype "tri_state+no_connect") (tstamp a3e468ff-5fe8-40b6-a28d-622f170dceb2))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "unconnected-(IC5-Pad5)") (pinfunction "TA13") (pintype "tri_state+no_connect") (tstamp b244f226-e821-4f6c-ad29-4cc8cf91f324))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "unconnected-(IC5-Pad6)") (pinfunction "TA12") (pintype "tri_state+no_connect") (tstamp c3b7a385-0ccd-47f1-9472-78098ae46c41))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "unconnected-(IC5-Pad7)") (pinfunction "TA11") (pintype "tri_state+no_connect") (tstamp f0549aee-8c39-454e-9713-0da446215c69))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "unconnected-(IC5-Pad8)") (pinfunction "TA10") (pintype "tri_state+no_connect") (tstamp 33f1fa8a-9a15-4733-8a0a-4f9d473a2693))
(pad "9" thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "unconnected-(IC5-Pad9)") (pinfunction "TA9") (pintype "tri_state+no_connect") (tstamp e25d9f4d-2012-4df5-a406-29f1ed8bc505))
(pad "10" thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "unconnected-(IC5-Pad10)") (pinfunction "TA8") (pintype "tri_state+no_connect") (tstamp ca74cb92-8552-42b7-bd0e-d21a81837c6a))
(pad "11" thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(IC5-Pad11)") (pinfunction "~{CAS1}") (pintype "output") (tstamp b5cdc9b8-975d-4191-8f13-f8bf00877cf0))
(pad "12" thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(IC5-Pad12)") (pinfunction "~{CAS0}") (pintype "output") (tstamp 3748aee0-c13b-4b89-8b40-c12e77ac0137))
(pad "13" thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "unconnected-(IC5-Pad13)") (pinfunction "MS2,~{IOSEL") (pintype "output+no_connect") (tstamp 6e4533b9-46a7-40c6-9251-4b0e32ebe18d))
(pad "14" thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "unconnected-(IC5-Pad14)") (pinfunction "MS1") (pintype "output+no_connect") (tstamp 6f723c67-e374-47b6-858b-0eb17388dc0f))
(pad "15" thru_hole oval (at 0 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "unconnected-(IC5-Pad15)") (pinfunction "MS0") (pintype "output+no_connect") (tstamp f1786a1d-e755-41bc-9cbc-cfc943c0cac0))
(pad "16" thru_hole oval (at 0 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/AEC") (pinfunction "AEC") (pintype "input") (tstamp 8f28e471-3516-4fb6-b363-f18abf31b776))
(pad "17" thru_hole oval (at 0 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/MUX") (pinfunction "MUX") (pintype "input") (tstamp 55776dee-7f11-45bf-8c9e-89dcaba1017d))
(pad "18" thru_hole oval (at 0 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 44b7b4ae-627c-4ed9-ba4d-0b8b69e69405))
(pad "19" thru_hole oval (at 0 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A1") (pinfunction "A1") (pintype "input") (tstamp 2ace235f-c813-49d1-aae3-67bc0bdbec3c))
(pad "20" thru_hole oval (at 0 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/A2") (pinfunction "A2") (pintype "input") (tstamp b91ed067-78f3-4382-81b1-e16abaefd065))
(pad "21" thru_hole oval (at 0 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/A3") (pinfunction "A3") (pintype "input") (tstamp 49a6c8a1-b62e-4e6d-b10b-4d734ed3a0bb))
(pad "22" thru_hole oval (at 0 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/A5{slash}A4") (pinfunction "A5/A4") (pintype "input") (tstamp f61b015b-244e-4a8d-9144-4b7199891959))
(pad "23" thru_hole oval (at 0 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/A7{slash}A6") (pinfunction "A7/A6") (pintype "input") (tstamp 4930ebf3-face-4134-8cd4-128c4fc4f83d))
(pad "24" thru_hole oval (at 0 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/A8") (pinfunction "A8") (pintype "input") (tstamp 73b0bd57-576a-4651-bb05-11932f9217d3))
(pad "25" thru_hole oval (at 15.24 58.42 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A9") (pinfunction "A9") (pintype "input") (tstamp c7187738-4e0d-49f9-aab5-a4651936e5b1))
(pad "26" thru_hole oval (at 15.24 55.88 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/A10") (pinfunction "A10") (pintype "input") (tstamp db50b7cb-31ab-4de4-9572-de9dab6901d9))
(pad "27" thru_hole oval (at 15.24 53.34 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp 505eac77-9c11-4263-b8e3-e3d56a1d159e))
(pad "28" thru_hole oval (at 15.24 50.8 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A12") (pinfunction "A12") (pintype "input") (tstamp ebce2e29-b378-4c8c-a09c-8873343858e6))
(pad "29" thru_hole oval (at 15.24 48.26 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A13") (pinfunction "A13") (pintype "input") (tstamp 17774712-2080-49d5-ba1e-0e2a3a22fa33))
(pad "30" thru_hole oval (at 15.24 45.72 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A14") (pinfunction "A14") (pintype "input") (tstamp 59b15e85-cc85-4d6a-85b7-9b21891ff313))
(pad "31" thru_hole oval (at 15.24 43.18 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/A15") (pinfunction "A15") (pintype "input") (tstamp 5568c75b-e69c-4091-87de-07ed4bb4c71d))
(pad "32" thru_hole oval (at 15.24 40.64 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/R{slash}~{W}") (pinfunction "R/~{W}") (pintype "input") (tstamp d3dc781d-44cb-4357-b235-7f4f61785a14))
(pad "33" thru_hole oval (at 15.24 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "/PHI_{IN}") (pinfunction "PHI_{IN}") (pintype "input") (tstamp 683581d0-63b3-4580-846d-ffe82b8109f7))
(pad "34" thru_hole oval (at 15.24 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 0c41f4ec-45bd-477a-a59b-73ba67f612f5))
(pad "35" thru_hole oval (at 15.24 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/D0_{IC5}") (pinfunction "D0") (pintype "bidirectional") (tstamp 1b156a97-4c76-440d-94cd-360c452534fe))
(pad "36" thru_hole oval (at 15.24 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/D1") (pinfunction "D1") (pintype "bidirectional") (tstamp 8ffac2ba-7f61-46fd-83ab-3a032cd20a2c))
(pad "37" thru_hole oval (at 15.24 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/D2") (pinfunction "D2") (pintype "bidirectional") (tstamp bc28b836-7878-4a84-a0cd-852e53551486))
(pad "38" thru_hole oval (at 15.24 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/D3") (pinfunction "D3") (pintype "bidirectional") (tstamp f50f2637-267f-46f5-a2ec-69db0d6301f3))
(pad "39" thru_hole oval (at 15.24 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/D4") (pinfunction "D4") (pintype "bidirectional") (tstamp 5dde3424-11ac-4391-b547-94feb8f79ac9))
(pad "40" thru_hole oval (at 15.24 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/D5") (pinfunction "D5") (pintype "bidirectional") (tstamp e85d50eb-4294-4c6e-afda-62bfa8fa318a))
(pad "41" thru_hole oval (at 15.24 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/D6_{IC5}") (pinfunction "D6") (pintype "bidirectional") (tstamp c84d9315-08bc-4ff7-a83e-fb682ab0fe45))
(pad "42" thru_hole oval (at 15.24 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/D7") (pinfunction "D7") (pintype "bidirectional") (tstamp 1ab67cfd-1467-4e14-a8b3-e429102173b6))
(pad "43" thru_hole oval (at 15.24 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "/~{Z80EN}") (pinfunction "~{Z80EN}") (pintype "bidirectional") (tstamp 2dded07c-07db-44e1-9e25-87d01fb0f5e1))
(pad "44" thru_hole oval (at 15.24 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "/~{FSDIR}") (pinfunction "~{FSDIR}") (pintype "bidirectional") (tstamp 9463e9d2-4702-407f-80b4-5b58087c6dc2))
(pad "45" thru_hole oval (at 15.24 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/~{GAME}") (pinfunction "~{GAME}") (pintype "bidirectional") (tstamp 14f62caf-8dbc-4463-bfad-55667830082e))
(pad "46" thru_hole oval (at 15.24 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "/~{EXROM}") (pinfunction "~{EXROM}") (pintype "bidirectional") (tstamp f9523408-8eaf-4e31-8202-13c2bb63e212))
(pad "47" thru_hole oval (at 15.24 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "/MS3") (pinfunction "MS3") (pintype "bidirectional") (tstamp d8361923-0a92-43a9-87d7-091f41326521))
(pad "48" thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "/40{slash}~{80}") (pinfunction "40/~{80}") (pintype "bidirectional") (tstamp a180a71e-c88f-4a53-98c0-3580b0333b5a))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-48_W15.24mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp c0af8446-7809-43cd-b1fd-9b6400a4587f)
(at 90.17 90.17 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/6d24399a-90dd-471e-8119-09665a0d6241")
(attr through_hole)
(fp_text reference "R3" (at 5.08 0 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e63d76a-f8e6-4991-af2b-792d9af393f3)
)
(fp_text value "68" (at 5.08 2.37 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bf428f2-980e-4ed2-8182-1d2a68d3ce95)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85ae6e0f-c1a1-48c6-8b83-a46559e79e52)
)
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 46339f2d-f04c-4995-b66d-569c5541ab2b))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 82f01b34-75eb-46e7-8d09-83046b31917e))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9161666b-00bd-4c27-882f-71c5bab7d86a))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 9cec0b0c-7b88-4e35-8edf-7d4430fb0a4a))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp b9bcf6d2-9de9-42ca-aeaf-b82e79e5153a))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e76280dc-8552-4a98-b2d2-b2a5876c5478))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 350d7cda-60f6-4c89-8fa2-75e58ea9e31e))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5096e669-fcdc-40ea-b0d0-915adeb53131))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2ff4cc0-d546-4369-a169-8c8efdf3e1cd))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e0b7fc24-2ca7-415e-a2ee-ddfdbc803909))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3c1da613-8efb-4282-ab13-27f3658b04c7))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 3f5ba8a6-2191-47ea-b60f-0b1e8fcd588b))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 46a35bdb-3804-48fc-a7fc-3bc02ec1b7cf))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 8585b738-4900-4a11-b6eb-5e601272e231))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp a7e636e0-6a98-49ec-bbd7-e6af80b0911b))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp f0840b6b-9746-480d-861a-2a409503c86f))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "Net-(IC9-Pad6)") (pintype "passive") (tstamp dad29f0c-cf4f-4905-b08b-4bc73379c2fa))
(pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 63 "/~{RAMCAS2}") (pintype "passive") (tstamp 0eb512c2-461d-4624-9e3b-a150e67c54b7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp c8c1f737-664c-435d-8fac-9bfe6c10f36d)
(at 106.68 113.03 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/348d4b3c-3d86-40be-90e2-3db8be653865")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 181b2ec1-1a51-4644-b8af-e550a43badc2)
)
(fp_text value "U9-CHIP" (at 1.905 1.27 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cf8e2cd0-ccb6-47ce-9241-6836a73e3269)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe010689-90d5-41e3-bfc9-643f6143993a)
)
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 0c73efe3-58b2-4249-a6eb-3eb012ccd9af))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5562ccc5-7b7b-4742-bd36-59a5d44386c7))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6b246513-06c1-4fba-a523-b74637025ff1))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 78a36d2f-9225-4d90-9f01-54a1f2cedc31))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7ca3a3f3-d98d-4da2-b400-d92c6859a725))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp fa377188-ec4f-49b7-a673-0b8910e88bcb))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1797c293-3d63-40d5-8512-befcc24b212a))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 64a58ff1-3aad-46d0-8c84-5c327f8b04a6))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 75094b42-eaea-459f-a75d-50ba3b195b2e))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp b4321373-d181-46cd-9fc4-76e750990664))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 031d8292-e81e-476b-bc7f-f7ba4e14ef2f))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 16a47987-cd0a-4ecb-b80f-a81dee8dfcb6))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 199cf78d-5e92-416a-8b60-35166fcd0dfa))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 23800244-5fde-4bc6-8284-53212e3bfbcf))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fb88da72-3901-45f6-9cb6-d0f2e86b9590))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 65 "/~{RAMCAS1}_{IN}") (pinfunction "Pin_1") (pintype "passive") (tstamp 4e40312d-24c4-44a4-99dc-4faefe6c10c6))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 66 "/~{RAMCAS0}_{IN}") (pinfunction "Pin_2") (pintype "passive") (tstamp 42ed61ef-868c-4423-9fd8-521b8d54a515))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp c9daac95-3b82-47af-9b2b-916a8a4b729c)
(at 90.17 113.03 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "c128-mmu-exp.kicad_sch")
(property "Sheetname" "")
(path "/d92cbaaf-50fd-4522-974c-358e82418a37")
(attr through_hole)
(fp_text reference "R4" (at 5.08 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2dd91b5b-8950-44b7-aae6-4be4cce7f568)
)
(fp_text value "68" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 764c3a29-4b72-4318-9441-d3eb81c1a9ba)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d63071c-b211-4d78-a0fa-d5618b2c6946)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2e9ae547-3a3a-422b-9354-b7a43d0f8fd3))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 30e813a0-4f04-4618-8f61-05d1a16a0665))