-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6502_wozmon.kicad_pcb
4834 lines (4787 loc) · 432 KB
/
6502_wozmon.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 false)
(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 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C11-Pad1)")
(net 3 "VCC")
(net 4 "Net-(C5-Pad1)")
(net 5 "Net-(C6-Pad1)")
(net 6 "Net-(C6-Pad2)")
(net 7 "Net-(C7-Pad1)")
(net 8 "Net-(C7-Pad2)")
(net 9 "Net-(C8-Pad2)")
(net 10 "Net-(C9-Pad1)")
(net 11 "IRQ*")
(net 12 "Net-(D1-Pad1)")
(net 13 "TXD")
(net 14 "RXD")
(net 15 "Net-(LED_1-Pad2)")
(net 16 "Net-(LED_2-Pad2)")
(net 17 "Net-(R3-Pad2)")
(net 18 "XTAL")
(net 19 "CLK")
(net 20 "Net-(RV1-Pad2)")
(net 21 "unconnected-(RV1-Pad3)")
(net 22 "unconnected-(J2-Pad1)")
(net 23 "Net-(D2-Pad1)")
(net 24 "RESET*")
(net 25 "A15")
(net 26 "A15*")
(net 27 "Net-(U1-Pad6)")
(net 28 "Net-(U1-Pad8)")
(net 29 "A14")
(net 30 "unconnected-(U1-Pad11)")
(net 31 "unconnected-(U2-Pad1)")
(net 32 "unconnected-(U2-Pad3)")
(net 33 "unconnected-(U2-Pad5)")
(net 34 "unconnected-(U2-Pad7)")
(net 35 "A0")
(net 36 "A1")
(net 37 "A2")
(net 38 "A3")
(net 39 "A4")
(net 40 "A5")
(net 41 "A6")
(net 42 "A7")
(net 43 "A8")
(net 44 "A9")
(net 45 "A10")
(net 46 "A11")
(net 47 "A12")
(net 48 "A13")
(net 49 "D7")
(net 50 "D6")
(net 51 "D5")
(net 52 "D4")
(net 53 "D3")
(net 54 "D2")
(net 55 "D1")
(net 56 "D0")
(net 57 "RW*")
(net 58 "unconnected-(U2-Pad35)")
(net 59 "unconnected-(U2-Pad38)")
(net 60 "unconnected-(U2-Pad39)")
(net 61 "unconnected-(U4-Pad5)")
(net 62 "unconnected-(U4-Pad8)")
(net 63 "unconnected-(U4-Pad9)")
(net 64 "unconnected-(U4-Pad11)")
(net 65 "Net-(D3-Pad2)")
(net 66 "unconnected-(U4-Pad16)")
(net 67 "unconnected-(U4-Pad17)")
(net 68 "unconnected-(U6-Pad7)")
(net 69 "unconnected-(U6-Pad8)")
(net 70 "unconnected-(U6-Pad9)")
(net 71 "unconnected-(U6-Pad10)")
(net 72 "unconnected-(U7-Pad2)")
(net 73 "unconnected-(U7-Pad3)")
(net 74 "unconnected-(U7-Pad4)")
(net 75 "unconnected-(U7-Pad5)")
(net 76 "unconnected-(U7-Pad6)")
(net 77 "unconnected-(U7-Pad7)")
(net 78 "unconnected-(U7-Pad8)")
(net 79 "unconnected-(U7-Pad9)")
(net 80 "Net-(U7-Pad10)")
(net 81 "Net-(U7-Pad11)")
(net 82 "Net-(U7-Pad12)")
(net 83 "Net-(U7-Pad13)")
(net 84 "Net-(U7-Pad14)")
(net 85 "Net-(U7-Pad15)")
(net 86 "Net-(U7-Pad16)")
(net 87 "unconnected-(U7-Pad17)")
(net 88 "unconnected-(U7-Pad18)")
(net 89 "unconnected-(U7-Pad19)")
(net 90 "unconnected-(U7-Pad39)")
(net 91 "unconnected-(U7-Pad40)")
(net 92 "unconnected-(U8-Pad7)")
(net 93 "unconnected-(U8-Pad8)")
(net 94 "unconnected-(U8-Pad9)")
(net 95 "unconnected-(U8-Pad10)")
(net 96 "unconnected-(X1-Pad1)")
(net 97 "unconnected-(J2-Pad4)")
(net 98 "unconnected-(J2-Pad6)")
(net 99 "unconnected-(J2-Pad7)")
(net 100 "unconnected-(J2-Pad8)")
(net 101 "unconnected-(J2-Pad9)")
(net 102 "Net-(R1-Pad1)")
(net 103 "Net-(R6-Pad1)")
(net 104 "unconnected-(SW2-Pad4)")
(net 105 "MAX232_12")
(net 106 "unconnected-(U9-Pad6)")
(net 107 "unconnected-(U9-Pad8)")
(net 108 "unconnected-(U9-Pad10)")
(net 109 "unconnected-(U9-Pad12)")
(net 110 "Net-(R7-Pad1)")
(net 111 "Net-(U4-Pad10)")
(footprint "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 026573f5-6902-42fe-ab69-2c876912c53f)
(at 50.2575 111.585 -90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/c2be61ec-015c-4bce-aa36-3be8446b9fbe")
(attr through_hole)
(fp_text reference "C9" (at -2.58 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4dfbce3-c195-4088-b32f-f42bdf0a9118)
)
(fp_text value "1uF" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2279401f-bc45-4875-8365-11bdf4ad7cdc)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17173f37-1710-46b8-8fad-abeba50fd374)
)
(fp_line (start 5.12 1.055) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0d99ec54-5dc5-4bac-8f8a-99923f398a29))
(fp_line (start -0.12 1.055) (end -0.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6af496ae-f019-42cb-96ce-9b994d7cf7a7))
(fp_line (start -0.12 -1.37) (end -0.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp adeb86c6-5c12-4584-843a-bd3769162294))
(fp_line (start 5.12 -1.37) (end 5.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp b74664d4-9734-4869-a5d2-fe58bace88f7))
(fp_line (start -0.12 1.37) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp cbfae38a-85ff-4e7a-9d63-a6e272729f3d))
(fp_line (start -0.12 -1.37) (end 5.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp eb6f2746-1be0-435f-962d-9880583d988c))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5174a2f4-42d2-4ebe-af39-8d4ae9d03f0a))
(fp_line (start 6.05 1.5) (end 6.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e878b33-dc51-4ec8-8356-ef2ac1c832d8))
(fp_line (start -1.05 1.5) (end 6.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9c574844-7cba-4b26-8a62-53d620caf10c))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp edc88ea9-a130-4f5c-b4ca-5ead4ac64b20))
(fp_line (start 0 1.25) (end 5 1.25) (layer "F.Fab") (width 0.1) (tstamp 68366b90-fcb7-41ce-839a-0441d3840682))
(fp_line (start 0 -1.25) (end 0 1.25) (layer "F.Fab") (width 0.1) (tstamp 8138d09b-1677-47f7-90d1-b24c99055a53))
(fp_line (start 5 1.25) (end 5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 82109fe8-e833-4f39-a53a-81047479d8d6))
(fp_line (start 5 -1.25) (end 0 -1.25) (layer "F.Fab") (width 0.1) (tstamp e3d3e05a-37dc-4823-8ef2-595fe881b6f2))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C9-Pad1)") (pintype "passive") (tstamp bd22abe0-1dff-463c-998f-448eb5729570))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 84c72ff1-651e-49cd-a596-69e35757402a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W15.24mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 083b967f-c589-4924-9e85-f58d5bbe004b)
(at 175.541666 41.925)
(descr "28-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" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/fc7b02b8-f259-4e7a-a55f-05d8c1db87c1")
(attr through_hole)
(fp_text reference "U3" (at 7.62 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24a60a8c-1eff-40ab-b338-a2c355da3ea7)
)
(fp_text value "28C256" (at 7.62 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9bcaed0-0aa6-4e67-a834-39396b6759e4)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfb20919-9b17-4f96-92a9-3bf5ee34256f)
)
(fp_line (start 1.16 -1.33) (end 1.16 34.35) (layer "F.SilkS") (width 0.12) (tstamp 50c5fd99-ef34-4aec-b3c1-812a68ee30a0))
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7f26e65b-aadd-497e-bc2f-c558be3fc21a))
(fp_line (start 1.16 34.35) (end 14.08 34.35) (layer "F.SilkS") (width 0.12) (tstamp 8bdfbfb7-2fe1-4129-abc0-f222adb7775d))
(fp_line (start 14.08 34.35) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp abaa37b0-f71f-4a55-aa4d-44e8fe4e1ed3))
(fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ac7d90c5-acd2-4a14-a98d-3c7be4619125))
(fp_line (start 16.57 34.41) (end 16.57 -1.39) (layer "F.SilkS") (width 0.12) (tstamp b9c0999c-73e9-4404-8b12-bf2c8208d854))
(fp_line (start -1.33 34.41) (end 16.57 34.41) (layer "F.SilkS") (width 0.12) (tstamp bae36310-cfcc-45bb-a9a7-1b98e1680ecc))
(fp_line (start -1.33 -1.39) (end -1.33 34.41) (layer "F.SilkS") (width 0.12) (tstamp bafad486-c889-4296-be05-d2e1c98abdf9))
(fp_line (start 16.57 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp fc212ac0-afeb-44e0-bdac-dce36fccdda0))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6b87dc9a-aedd-4aba-b4a9-8f1363d79ffa))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 43585a84-5265-4eb5-b41c-1c43d1948c6b))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 4b012969-c4e3-4634-96ff-31d6e93e5bc1))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 53b46aac-7cd0-4e3f-8483-21df1c822e7f))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp b6dbc984-6b41-4423-8635-0dd0b9fb1493))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp 39a4e82a-a1ae-44bf-be10-5dc18292520d))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3edea979-180a-4928-beea-07a51d2def17))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 7ef782cc-57c3-4152-be6a-e09cea8d59cf))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp c8a91443-1e25-4057-ac20-7555c7c35088))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp cd19119a-738c-4679-8e84-81d2e9c0fa2f))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp d64dd0e2-cb31-4ba8-9c31-dbfe03a3d183))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp e8b39e6e-3721-452e-a5a2-e346f37c8323))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp f9d12d5d-4821-4e58-9228-bbf93bdf36c3))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp fafc47a2-01be-41c4-809c-1e7c674dc556))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "A14") (pinfunction "A14") (pintype "input") (tstamp faf3e105-168b-40ab-b02c-8004bf50f6e8))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "A12") (pinfunction "A12") (pintype "input") (tstamp 4258b169-3166-46a3-8fbb-05e7b597386b))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "A7") (pinfunction "A7") (pintype "input") (tstamp e7bfdfd6-2d54-4154-ae8a-81a868963b11))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "A6") (pinfunction "A6") (pintype "input") (tstamp 88fef4a9-3a97-4adc-a323-8017d6940af9))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "A5") (pinfunction "A5") (pintype "input") (tstamp 60ca4ef6-4bb0-4868-b4b6-4c4d19386df9))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "A4") (pinfunction "A4") (pintype "input") (tstamp a02784f0-905e-4fed-84a7-9a1de8bbe1cd))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "A3") (pinfunction "A3") (pintype "input") (tstamp 3b62842b-1fff-49d9-8627-00b4eda5881a))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "A2") (pinfunction "A2") (pintype "input") (tstamp 4c2ee3b1-56e3-449e-898c-30d6c2d2a480))
(pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "A1") (pinfunction "A1") (pintype "input") (tstamp 9c6af434-966b-4675-a61c-83973ba9e69e))
(pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "A0") (pinfunction "A0") (pintype "input") (tstamp 47b26c57-7da8-443a-9cb7-d4bab7aa9791))
(pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "D0") (pinfunction "D0") (pintype "tri_state") (tstamp 072d7b8c-61f1-4716-94fb-2659e904562b))
(pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "D1") (pinfunction "D1") (pintype "tri_state") (tstamp 35131e85-e48f-4a99-b1b6-84ab908281af))
(pad "13" thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 "D2") (pinfunction "D2") (pintype "tri_state") (tstamp ca2954bf-3e92-4d7e-9453-ea411888e385))
(pad "14" thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 809c998c-9d91-4cf4-899b-b53bfd015f93))
(pad "15" thru_hole oval (at 15.24 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "D3") (pinfunction "D3") (pintype "tri_state") (tstamp aeae7acb-ada6-46d2-b9de-f48322c2a072))
(pad "16" thru_hole oval (at 15.24 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "D4") (pinfunction "D4") (pintype "tri_state") (tstamp 1923de44-b0b2-4ae0-aa9c-1b3def73be3b))
(pad "17" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "D5") (pinfunction "D5") (pintype "tri_state") (tstamp 4023434b-7bb2-4a91-a278-7aeb7bb65f88))
(pad "18" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 "D6") (pinfunction "D6") (pintype "tri_state") (tstamp ced7fe4d-4967-446e-add6-5d322e37dbb4))
(pad "19" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "D7") (pinfunction "D7") (pintype "tri_state") (tstamp 5d100b39-0893-4d15-8d22-52c835808456))
(pad "20" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "A15*") (pinfunction "~{CS}") (pintype "input") (tstamp ae2516df-1c20-4747-b47f-e8fe4baa2d87))
(pad "21" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "A10") (pinfunction "A10") (pintype "input") (tstamp c1cd73fb-5687-446c-90ef-cf379a169d95))
(pad "22" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "~{OE}") (pintype "input") (tstamp 06368af3-be99-4d07-b978-991d0ebc814e))
(pad "23" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "A11") (pinfunction "A11") (pintype "input") (tstamp 7c31c391-0bd5-41f9-b91e-af61fd82be5c))
(pad "24" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "A9") (pinfunction "A9") (pintype "input") (tstamp bb47e152-320c-4cb0-be20-5d251323be78))
(pad "25" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "A8") (pinfunction "A8") (pintype "input") (tstamp 183b2457-b3a9-456b-9916-61199f026f1d))
(pad "26" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "A13") (pinfunction "A13") (pintype "input") (tstamp d15f3b6d-978c-4405-ade9-59ab1d9597ea))
(pad "27" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "~{WE}") (pintype "input") (tstamp ae74c00b-448c-4f21-b3e9-8ce455db9680))
(pad "28" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 80197ee2-10d3-4466-a909-5332cc391338))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W15.24mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 0e6dbdb0-7b30-449b-9e31-e7c4187dd8d9)
(at 38.8275 111.585 -90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/572cb9d0-cde1-420b-89d2-a201d9bd9343")
(attr through_hole)
(fp_text reference "C6" (at -2.58 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1f55309-0ad3-4b26-8c74-c3ebc547700e)
)
(fp_text value "1uF" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ede73b44-0f6e-42be-9bd2-71d9ad8f238d)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5de4f5a1-dfe0-481e-b5ea-ade40e723c4c)
)
(fp_line (start 5.12 1.055) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 16e68d4c-d13b-48ee-9891-f23b9b4e3fb5))
(fp_line (start -0.12 1.37) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5a667f3a-b6c3-48d1-806b-8c455dc9f6b4))
(fp_line (start -0.12 -1.37) (end 5.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9c7d8940-6f51-4373-93c9-4436aa843527))
(fp_line (start -0.12 -1.37) (end -0.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp b65c81a3-8e5d-4860-82c6-36a3cfc015a7))
(fp_line (start 5.12 -1.37) (end 5.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp c2161a78-1ad2-43d9-9f5e-e3761df316d8))
(fp_line (start -0.12 1.055) (end -0.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp cc90c0b9-66df-40ec-beda-1ddae0831453))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 10dc762c-7b27-4a7d-a21f-3c42cd09ad11))
(fp_line (start -1.05 1.5) (end 6.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 97459755-2d24-4e06-bbbe-abd073728a86))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c100eae4-e80d-4b29-a752-36365d8bf90a))
(fp_line (start 6.05 1.5) (end 6.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e9de329f-d28c-45b8-8c62-3db1a6bba831))
(fp_line (start 5 1.25) (end 5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3b8631c3-e364-45b4-8c96-3cdcb01c3dc5))
(fp_line (start 5 -1.25) (end 0 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4c01a32f-6dea-4a76-a410-0091984264ce))
(fp_line (start 0 1.25) (end 5 1.25) (layer "F.Fab") (width 0.1) (tstamp 61d5b267-a5df-465e-af96-62d537e795f5))
(fp_line (start 0 -1.25) (end 0 1.25) (layer "F.Fab") (width 0.1) (tstamp 7b1d4d2e-2b51-4855-a02d-e826d605b619))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C6-Pad1)") (pintype "passive") (tstamp cd8efa37-964d-4387-88e7-851a8f623e9c))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C6-Pad2)") (pintype "passive") (tstamp 7cded10e-591b-4516-acd9-72c18ed3beb5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Display:WC1602A" (layer "F.Cu")
(tedit 5A02FE80) (tstamp 0fa8be57-8b67-49d1-897e-6de15dc9945b)
(at 122.2125 98.5425)
(descr "LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf")
(tags "LCD 16x2 Alphanumeric 16pin")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/fb3250fd-2138-4df8-a880-8076e4b40627")
(attr through_hole)
(fp_text reference "U8" (at -5.82 -3.81) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67f7293b-51bb-4d15-ba70-473517dd9052)
)
(fp_text value "WC1602A" (at 68.2875 -3.9275) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3203a12-e3af-4de4-b468-c6ce50dda224)
)
(fp_text user "${REFERENCE}" (at 30.37 14.74) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp f751921a-4909-4958-ad62-8e2c4d27c595)
)
(fp_line (start 68 3) (end 68 28) (layer "F.SilkS") (width 0.12) (tstamp 29a2b61a-746c-497a-ad41-69b085852297))
(fp_line (start 63.70066 23) (end 0.2 23) (layer "F.SilkS") (width 0.12) (tstamp 32c13799-b9b9-439a-ad8e-136aff6364af))
(fp_line (start -8.14 33.64) (end 72.14 33.64) (layer "F.SilkS") (width 0.12) (tstamp 4399b0e8-900b-4265-8a98-349c12d068f9))
(fp_line (start -5 28) (end -5 3) (layer "F.SilkS") (width 0.12) (tstamp 4bad91dd-15c4-4280-a800-ea9b8b044d12))
(fp_line (start -0.29972 22.49932) (end -0.29972 8.5) (layer "F.SilkS") (width 0.12) (tstamp 66bb0225-2ee1-41ed-9799-f9932246f84f))
(fp_line (start 0.2 8) (end 63.7 8) (layer "F.SilkS") (width 0.12) (tstamp 6e412256-1219-48b2-960c-97943b194a2c))
(fp_line (start -8.14 -2.64) (end -8.14 33.64) (layer "F.SilkS") (width 0.12) (tstamp 7078e789-4abf-4b7c-843f-0ac3461dbd0e))
(fp_line (start 68 28) (end -5 28) (layer "F.SilkS") (width 0.12) (tstamp 7359e499-2a24-42cd-b00f-6b6a0941f15f))
(fp_line (start -1.5 -3) (end 1.5 -3) (layer "F.SilkS") (width 0.12) (tstamp 73c8a12c-cea2-442b-a40e-7ab30a32dcfc))
(fp_line (start 64.2 8.5) (end 64.2 22.5) (layer "F.SilkS") (width 0.12) (tstamp 820ab2c1-d992-4e27-9f4f-8bf510ee1a8b))
(fp_line (start 72.14 33.64) (end 72.14 -2.64) (layer "F.SilkS") (width 0.12) (tstamp cabab653-0ed9-40ae-9259-4fd9f9a22c73))
(fp_line (start -5 3) (end 68 3) (layer "F.SilkS") (width 0.12) (tstamp eec01e62-605c-48d9-a192-62a060643ca0))
(fp_line (start 72.14 -2.64) (end -7.34 -2.64) (layer "F.SilkS") (width 0.12) (tstamp f0ee2643-631e-406a-9ea5-e31e743b9a22))
(fp_line (start -8.13 -2.64) (end -7.34 -2.64) (layer "F.SilkS") (width 0.12) (tstamp fd32959b-6b7f-40c6-8b1b-e480c3bcc36d))
(fp_arc (start 63.7 8) (mid 64.053553 8.146447) (end 64.2 8.5) (layer "F.SilkS") (width 0.12) (tstamp 38c3b82b-6e22-4b4f-b563-a6b1e1a77a16))
(fp_arc (start 64.20104 22.49932) (mid 64.054479 22.85315) (end 63.70066 22.9997) (layer "F.SilkS") (width 0.12) (tstamp 41352401-dd8c-4d16-929b-744f9625b976))
(fp_arc (start 0.20066 22.9997) (mid -0.153162 22.853142) (end -0.29972 22.49932) (layer "F.SilkS") (width 0.12) (tstamp 49b15f99-fb80-4d97-9604-ce8f5d7528cc))
(fp_arc (start -0.29972 8.49884) (mid -0.153162 8.145018) (end 0.20066 7.99846) (layer "F.SilkS") (width 0.12) (tstamp ac1a4264-d7ae-4281-af29-1873f1e6c660))
(fp_line (start 72.25 -2.75) (end 72.25 33.75) (layer "F.CrtYd") (width 0.05) (tstamp 3765a98f-8512-4b94-adc9-61f064c34840))
(fp_line (start -8.25 -2.75) (end -8.25 33.75) (layer "F.CrtYd") (width 0.05) (tstamp 5dd1be3a-0e35-4697-93f7-2505de9414ad))
(fp_line (start -8.25 -2.75) (end 72.25 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 73d0af70-38f0-43eb-9673-2f7a10b0ecd2))
(fp_line (start -8.25 33.75) (end 72.25 33.75) (layer "F.CrtYd") (width 0.05) (tstamp 75bfdbcb-7a90-4c97-8b5c-6bf6e6eb6fb0))
(fp_line (start 0 -1.5) (end -1 -2.5) (layer "F.Fab") (width 0.1) (tstamp 34e624d4-d77b-459f-bc40-ef7405e5ac2b))
(fp_line (start -1 -2.5) (end -8 -2.5) (layer "F.Fab") (width 0.1) (tstamp 3deb3bc4-713a-4852-afca-34e2153344b7))
(fp_line (start 1 -2.5) (end 0 -1.5) (layer "F.Fab") (width 0.1) (tstamp 40ebb3be-ea33-49de-9c59-07edcac3c502))
(fp_line (start 72 33.5) (end -8 33.5) (layer "F.Fab") (width 0.1) (tstamp 44499351-4f70-4054-ba5b-cb95f26706fd))
(fp_line (start 1 -2.5) (end 72 -2.5) (layer "F.Fab") (width 0.1) (tstamp 959ad02e-6e29-4203-95b3-119beba751b2))
(fp_line (start 72 -2.5) (end 72 33.5) (layer "F.Fab") (width 0.1) (tstamp e050c287-9e41-4c73-b92d-684644629c5a))
(fp_line (start -8 33.5) (end -8 -2.5) (layer "F.Fab") (width 0.1) (tstamp e232a89d-9e5f-4fb4-8859-a4a98595b9d4))
(pad "" thru_hole circle (at 69.5 0) (size 3 3) (drill 2.5) (layers *.Cu *.Mask) (tstamp 2e7b4a99-0cc7-438e-ab08-a58f39801655))
(pad "" thru_hole circle (at 69.49948 31.0007) (size 3 3) (drill 2.5) (layers *.Cu *.Mask) (tstamp 68a22539-b9f9-46c3-93c3-a31f07fc022a))
(pad "" thru_hole circle (at -5.4991 31.0007) (size 3 3) (drill 2.5) (layers *.Cu *.Mask) (tstamp a1132699-803c-4e02-971d-360c9f3855c5))
(pad "" thru_hole circle (at -5.4991 0) (size 3 3) (drill 2.5) (layers *.Cu *.Mask) (tstamp ac53482c-96af-4534-9f31-810efa9a6735))
(pad "1" thru_hole rect (at 0 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 0730c17b-7cc8-4784-b3f4-5ec238b2d4b0))
(pad "2" thru_hole oval (at 2.54 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 79b21308-951c-43b9-aaff-9af07ae004ce))
(pad "3" thru_hole oval (at 5.08 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 20 "Net-(RV1-Pad2)") (pinfunction "VO") (pintype "input") (tstamp 16145822-ba55-4777-bec9-f502e3bf68ca))
(pad "4" thru_hole oval (at 7.62 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 84 "Net-(U7-Pad14)") (pinfunction "RS") (pintype "input") (tstamp 565d00c4-39e5-4f02-aa69-3af31787a54e))
(pad "5" thru_hole oval (at 10.16 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 85 "Net-(U7-Pad15)") (pinfunction "R/W") (pintype "input") (tstamp 195134c0-d10c-43ad-9df8-03a86e1c2958))
(pad "6" thru_hole oval (at 12.7 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 86 "Net-(U7-Pad16)") (pinfunction "E") (pintype "input") (tstamp 83839454-fdb8-4d68-8b60-9186ad95bf82))
(pad "7" thru_hole oval (at 15.24 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 92 "unconnected-(U8-Pad7)") (pinfunction "D0") (pintype "input+no_connect") (tstamp 0082d0ce-5df7-4004-b95a-235e2325898b))
(pad "8" thru_hole oval (at 17.78 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 93 "unconnected-(U8-Pad8)") (pinfunction "D1") (pintype "input+no_connect") (tstamp 3d5d3834-1fae-4838-8efc-5ca9021af983))
(pad "9" thru_hole oval (at 20.32 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 94 "unconnected-(U8-Pad9)") (pinfunction "D2") (pintype "input+no_connect") (tstamp 961888a2-3596-4b9b-8791-2d2836cc1cbe))
(pad "10" thru_hole oval (at 22.86 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 95 "unconnected-(U8-Pad10)") (pinfunction "D3") (pintype "input+no_connect") (tstamp ef15e35f-c89e-4d1c-92b7-5919ebd25964))
(pad "11" thru_hole oval (at 25.4 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 80 "Net-(U7-Pad10)") (pinfunction "D4") (pintype "input") (tstamp f2570f56-8174-4543-9f23-bb11e025dcbd))
(pad "12" thru_hole oval (at 27.94 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 81 "Net-(U7-Pad11)") (pinfunction "D5") (pintype "input") (tstamp ab1576de-0bb0-46bf-bb34-f2ca7ca53621))
(pad "13" thru_hole oval (at 30.48 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 82 "Net-(U7-Pad12)") (pinfunction "D6") (pintype "input") (tstamp a93c8ac0-5aad-4d0b-bbbc-4b6117e1d9b0))
(pad "14" thru_hole oval (at 33.02 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 83 "Net-(U7-Pad13)") (pinfunction "D7") (pintype "input") (tstamp 137c8a85-fda3-4c31-aeb8-651cda795273))
(pad "15" thru_hole oval (at 35.56 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "LED(+)") (pintype "power_in") (tstamp dc2a36f2-fae4-4b20-9185-5620d767c81e))
(pad "16" thru_hole oval (at 38.1 0) (size 1.8 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "LED(-)") (pintype "power_in") (tstamp c74541b4-9b3b-4b75-acfb-d6fcc6e29902))
(model "${KICAD6_3DMODEL_DIR}/Display.3dshapes/WC1602A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Dsub:DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm" (layer "F.Cu")
(tedit 59FEDEE2) (tstamp 103ab5f4-75ce-49ee-b0d7-8085c032bd4a)
(at 52.87 21.230331 180)
(descr "9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/52148796-9899-4c3e-92b0-c72b38a9e7fb")
(attr through_hole)
(fp_text reference "J2" (at -22.822 -1.121669) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54dee5ea-8f17-4c64-bb4a-91247b89c797)
)
(fp_text value "DB9_Female" (at -5.54 20.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e5f59fb-1475-43cc-ab82-fb34f4198ac3)
)
(fp_text user "${REFERENCE}" (at -5.54 16.225) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69a33546-a62b-408e-9ae2-749829fb9502)
)
(fp_line (start 9.945 -1.86) (end 9.945 12.68) (layer "F.SilkS") (width 0.12) (tstamp 27a515e6-6e3d-4026-bd98-47be062525fb))
(fp_line (start 0.25 -2.754338) (end 0 -2.321325) (layer "F.SilkS") (width 0.12) (tstamp 396768f7-77f4-47af-8cb2-4b4c1906562d))
(fp_line (start -21.025 -1.86) (end 9.945 -1.86) (layer "F.SilkS") (width 0.12) (tstamp 6b8e312f-aa93-4b86-9bc2-0bef89504c38))
(fp_line (start -21.025 12.68) (end -21.025 -1.86) (layer "F.SilkS") (width 0.12) (tstamp 7feff787-611b-4d5a-8a20-3e0fc5591fe0))
(fp_line (start -0.25 -2.754338) (end 0.25 -2.754338) (layer "F.SilkS") (width 0.12) (tstamp e31d4b7d-7253-40ee-bacd-539d5d55dee7))
(fp_line (start 0 -2.321325) (end -0.25 -2.754338) (layer "F.SilkS") (width 0.12) (tstamp ec8a8958-e001-4a89-a41c-941a34d34f59))
(fp_line (start -21.5 19.85) (end 10.4 19.85) (layer "F.CrtYd") (width 0.05) (tstamp 79561239-d0bb-454f-ac5e-c7797db193ef))
(fp_line (start 10.4 -2.35) (end -21.5 -2.35) (layer "F.CrtYd") (width 0.05) (tstamp b8bd5460-8f5d-4691-83d4-300e60703991))
(fp_line (start 10.4 19.85) (end 10.4 -2.35) (layer "F.CrtYd") (width 0.05) (tstamp c720f5d8-ecce-440d-926a-3c79b7f273f2))
(fp_line (start -21.5 -2.35) (end -21.5 19.85) (layer "F.CrtYd") (width 0.05) (tstamp e4321de0-0a47-4e31-856d-3ca67fff409e))
(fp_line (start 9.885 12.74) (end -20.965 12.74) (layer "F.Fab") (width 0.1) (tstamp 00271f00-0368-41af-b781-77961164622a))
(fp_line (start 2.61 13.14) (end -13.69 13.14) (layer "F.Fab") (width 0.1) (tstamp 0938ef34-347a-41fc-a6fe-b20f6cdd06f5))
(fp_line (start -20.965 -1.8) (end -20.965 12.74) (layer "F.Fab") (width 0.1) (tstamp 133ea431-d4f0-4c7d-89d4-7a981af40272))
(fp_line (start -20.54 18.14) (end -15.54 18.14) (layer "F.Fab") (width 0.1) (tstamp 1753c3ab-02b2-4ce4-96fa-c9e0013ece6d))
(fp_line (start 4.46 13.14) (end 4.46 18.14) (layer "F.Fab") (width 0.1) (tstamp 3f4501f6-be8f-401c-81e2-594bb34015fd))
(fp_line (start -20.965 12.74) (end 9.885 12.74) (layer "F.Fab") (width 0.1) (tstamp 44d7a149-931d-4d66-b91f-d7470634f7e5))
(fp_line (start -15.54 18.14) (end -15.54 13.14) (layer "F.Fab") (width 0.1) (tstamp 4c8302d2-a3e2-41f8-8f3f-05bc319305ee))
(fp_line (start -20.965 13.14) (end 9.885 13.14) (layer "F.Fab") (width 0.1) (tstamp 4d2de6f8-2460-4749-94cf-00b607bc5f18))
(fp_line (start -19.64 12.74) (end -19.64 1.42) (layer "F.Fab") (width 0.1) (tstamp 5c5127e6-c272-4852-bf68-27ff9423ebab))
(fp_line (start -13.69 13.14) (end -13.69 19.31) (layer "F.Fab") (width 0.1) (tstamp 6d5c5b9a-2b5f-455c-aee0-1a7b82ba2bba))
(fp_line (start 5.36 12.74) (end 5.36 1.42) (layer "F.Fab") (width 0.1) (tstamp 7ba1071b-38f2-491b-9f85-c3100ba37c9f))
(fp_line (start 9.46 18.14) (end 9.46 13.14) (layer "F.Fab") (width 0.1) (tstamp 7d3ad8cf-292a-4446-9e8b-0144514ed8a8))
(fp_line (start 8.56 12.74) (end 8.56 1.42) (layer "F.Fab") (width 0.1) (tstamp 81fd1f64-b211-4303-b6bf-a769ef9e0cee))
(fp_line (start 4.46 18.14) (end 9.46 18.14) (layer "F.Fab") (width 0.1) (tstamp 8b2880c8-ff54-4e6d-a520-ed28aea7a4a5))
(fp_line (start -16.44 12.74) (end -16.44 1.42) (layer "F.Fab") (width 0.1) (tstamp 97c40c1e-8aea-4412-b8f6-46a5b304e785))
(fp_line (start 9.885 -1.8) (end -20.965 -1.8) (layer "F.Fab") (width 0.1) (tstamp 9c7e6107-3a24-41f3-97be-c30a1b66a24f))
(fp_line (start 2.61 19.31) (end 2.61 13.14) (layer "F.Fab") (width 0.1) (tstamp c3a9bc97-602a-4d42-9274-bd088b3d55d0))
(fp_line (start -13.69 19.31) (end 2.61 19.31) (layer "F.Fab") (width 0.1) (tstamp c6eb7c6c-c9ad-45d1-b831-3718c2664110))
(fp_line (start 9.46 13.14) (end 4.46 13.14) (layer "F.Fab") (width 0.1) (tstamp da3b94ff-5c84-4f0e-ac92-52505521e3ce))
(fp_line (start 9.885 13.14) (end 9.885 12.74) (layer "F.Fab") (width 0.1) (tstamp e33799a8-4c83-435e-a8d3-e8969d6faa93))
(fp_line (start 9.885 12.74) (end 9.885 -1.8) (layer "F.Fab") (width 0.1) (tstamp ed99e9fc-4397-4675-ad0a-ec6c61801688))
(fp_line (start -20.965 12.74) (end -20.965 13.14) (layer "F.Fab") (width 0.1) (tstamp eea6b72f-471c-45ec-8526-d0d7da4b506a))
(fp_line (start -20.54 13.14) (end -20.54 18.14) (layer "F.Fab") (width 0.1) (tstamp f75beaef-47e5-4ead-bd7c-d93b70e35fee))
(fp_line (start -15.54 13.14) (end -20.54 13.14) (layer "F.Fab") (width 0.1) (tstamp fbbc8202-bd15-4075-898d-4e3ce4c5c1ca))
(fp_arc (start 5.36 1.42) (mid 6.96 -0.18) (end 8.56 1.42) (layer "F.Fab") (width 0.1) (tstamp 27546e9b-f8b9-4f15-8c96-20b6f78cdcb4))
(fp_arc (start -19.64 1.42) (mid -18.04 -0.18) (end -16.44 1.42) (layer "F.Fab") (width 0.1) (tstamp e58bf365-7bd2-4cb1-aee7-bce7c40d228d))
(pad "0" thru_hole circle (at -18.04 1.42 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 7abba457-3adb-4c18-ba38-ac54d2b692e0))
(pad "0" thru_hole circle (at 6.96 1.42 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp e280339f-e063-417e-81da-cf0349a73169))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 22 "unconnected-(J2-Pad1)") (pinfunction "1") (pintype "passive+no_connect") (tstamp 5e2f9818-d42c-4e65-ab8a-dd98f0ba6764))
(pad "2" thru_hole circle (at -2.77 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 14 "RXD") (pinfunction "2") (pintype "passive") (tstamp ac62e3a8-9bca-4f2a-849d-5c12d72ae6bd))
(pad "3" thru_hole circle (at -5.54 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 13 "TXD") (pinfunction "3") (pintype "passive") (tstamp 2f29a072-0f1c-4544-9d3f-ec80f3fa2080))
(pad "4" thru_hole circle (at -8.31 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 97 "unconnected-(J2-Pad4)") (pinfunction "4") (pintype "passive+no_connect") (tstamp 623d5609-5704-45d1-a8a3-8c80599f4572))
(pad "5" thru_hole circle (at -11.08 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "5") (pintype "passive") (tstamp 47b11e04-e843-4cd8-914a-150d03e51926))
(pad "6" thru_hole circle (at -1.385 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 98 "unconnected-(J2-Pad6)") (pinfunction "6") (pintype "passive+no_connect") (tstamp c7629ec0-c8f7-443a-9cd2-26923e718b39))
(pad "7" thru_hole circle (at -4.155 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 99 "unconnected-(J2-Pad7)") (pinfunction "7") (pintype "passive+no_connect") (tstamp 547fcfbd-da7f-4043-a1b1-7482771b3739))
(pad "8" thru_hole circle (at -6.925 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 100 "unconnected-(J2-Pad8)") (pinfunction "8") (pintype "passive+no_connect") (tstamp 11b90bbe-7ed2-4669-8680-aadf025385c3))
(pad "9" thru_hole circle (at -9.695 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 101 "unconnected-(J2-Pad9)") (pinfunction "9") (pintype "passive+no_connect") (tstamp 0af9d940-ce29-4275-b3d9-2ddf2e449817))
(model "${KICAD6_3DMODEL_DIR}/Connector_Dsub.3dshapes/DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_A-405_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 12212c52-d678-427e-8c80-0c93b83c8331)
(at 60.2325 82.15 90)
(descr "Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
(tags "Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/6e72d7de-046b-45fe-a561-2217c358c22e")
(attr through_hole)
(fp_text reference "D1" (at 12.7 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83da1ff2-cace-4033-9c0f-ef8492db68e1)
)
(fp_text value "D" (at 5.08 2.47 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b4c556b-36b7-4565-a168-fc05e1d70e6f)
)
(fp_text user "K" (at 0 -1.9 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96dd2ba5-9fdd-40b8-8a3e-89936630f25a)
)
(fp_text user "${REFERENCE}" (at 5.47 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 000f1e92-8b2d-42f1-ab74-3425b941211c)
)
(fp_text user "K" (at 0 -1.9 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 849515b9-9b3a-451e-a87c-12eae471c824)
)
(fp_line (start 3.14 -1.47) (end 3.14 1.47) (layer "F.SilkS") (width 0.12) (tstamp 6077e7cf-b72f-4a67-a935-d99029e9a8b6))
(fp_line (start 3.38 -1.47) (end 3.38 1.47) (layer "F.SilkS") (width 0.12) (tstamp 69e01317-b025-41e7-a49f-ebb7ee8f43c8))
(fp_line (start 1.14 0) (end 2.36 0) (layer "F.SilkS") (width 0.12) (tstamp 84eb987e-eef0-421d-8be5-d06405e64497))
(fp_line (start 2.36 -1.47) (end 2.36 1.47) (layer "F.SilkS") (width 0.12) (tstamp 9b013344-3334-43e1-b4c9-b28898d50742))
(fp_line (start 2.36 1.47) (end 7.8 1.47) (layer "F.SilkS") (width 0.12) (tstamp 9baf5e1c-3d79-45fa-b3ec-e79339370b89))
(fp_line (start 7.8 1.47) (end 7.8 -1.47) (layer "F.SilkS") (width 0.12) (tstamp adfba4f7-0e85-48d1-94de-e680fe39bc3a))
(fp_line (start 7.8 -1.47) (end 2.36 -1.47) (layer "F.SilkS") (width 0.12) (tstamp dd70a06c-97ea-4529-9955-9cbd8549eb77))
(fp_line (start 3.26 -1.47) (end 3.26 1.47) (layer "F.SilkS") (width 0.12) (tstamp ddbe1450-f8db-478f-aaf2-57b90ffc4287))
(fp_line (start 9.02 0) (end 7.8 0) (layer "F.SilkS") (width 0.12) (tstamp dea94b67-d62e-4038-8d71-f3e6be4c4a7f))
(fp_line (start 11.31 -1.6) (end -1.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 1d1dfc56-e681-4ca9-b8ca-d94f8edbbe19))
(fp_line (start 11.31 1.6) (end 11.31 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 6419e693-f1bf-4e10-84ae-914fc6efd389))
(fp_line (start -1.15 1.6) (end 11.31 1.6) (layer "F.CrtYd") (width 0.05) (tstamp da8f61a7-04c0-4a35-b11b-e7a18bc49600))
(fp_line (start -1.15 -1.6) (end -1.15 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e29b6903-1f89-487c-9bc6-4c82576303f5))
(fp_line (start 10.16 0) (end 7.68 0) (layer "F.Fab") (width 0.1) (tstamp 10cec8c8-e578-40a6-8391-3d4172406047))
(fp_line (start 0 0) (end 2.48 0) (layer "F.Fab") (width 0.1) (tstamp 1735fb5d-7fdc-40b7-a76a-e3695a4c286e))
(fp_line (start 2.48 1.35) (end 7.68 1.35) (layer "F.Fab") (width 0.1) (tstamp 7b29edb5-3f9f-408e-9389-7524b4750cfd))
(fp_line (start 2.48 -1.35) (end 2.48 1.35) (layer "F.Fab") (width 0.1) (tstamp 9a829721-a0a5-4f9a-a6f8-23a2307e5cb9))
(fp_line (start 3.16 -1.35) (end 3.16 1.35) (layer "F.Fab") (width 0.1) (tstamp a6b1622e-56ee-4169-bc98-6cdd7d414326))
(fp_line (start 7.68 -1.35) (end 2.48 -1.35) (layer "F.Fab") (width 0.1) (tstamp c94b2317-1d70-490c-877c-a01aa59a6d7c))
(fp_line (start 3.36 -1.35) (end 3.36 1.35) (layer "F.Fab") (width 0.1) (tstamp d3577119-13af-4663-9f66-54ce26431f68))
(fp_line (start 7.68 1.35) (end 7.68 -1.35) (layer "F.Fab") (width 0.1) (tstamp d7b84e56-52b8-495b-b416-dc5128a1f4f1))
(fp_line (start 3.26 -1.35) (end 3.26 1.35) (layer "F.Fab") (width 0.1) (tstamp d9f971dc-7fa1-43de-9c4c-4bdd52f8b203))
(pad "1" thru_hole rect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp bb05d4ac-339b-44bc-8be1-243faaf2d3a5))
(pad "2" thru_hole oval (at 10.16 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "IRQ*") (pinfunction "A") (pintype "passive") (tstamp dd720f23-8d30-4b71-9999-2380fa09b26f))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_A-405_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 1aea4490-c18a-4902-a6e4-efc7493eb6e3)
(at 56.515 59.095 -90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/10db89f4-e945-464e-9220-3f1319291140")
(attr through_hole)
(fp_text reference "C10" (at 7.58 0.238095 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b90d84e-e6d0-42f3-a1db-38fad4fd752e)
)
(fp_text value "C" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0e76b65-bc48-416a-9d45-d9612515f906)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fca6e29-3018-479c-b6e3-ca83fc431dde)
)
(fp_line (start 5.12 1.055) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0142125e-6a7e-4e6e-8b04-2b311acd73df))
(fp_line (start -0.12 -1.37) (end -0.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 11545373-887f-4e79-81f7-bea9c561e110))
(fp_line (start -0.12 1.055) (end -0.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1b9e9550-1a5f-474f-b790-61969fe4680a))
(fp_line (start 5.12 -1.37) (end 5.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 1f2b9e8d-3255-4157-881e-d1be0a23d45d))
(fp_line (start -0.12 1.37) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp b1bf81dc-3268-4d6e-b98a-93828548c89f))
(fp_line (start -0.12 -1.37) (end 5.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp da33292d-9969-4e29-9948-778691b89fd5))
(fp_line (start -1.05 1.5) (end 6.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 07a44873-31b2-4cb3-b203-9ff9b676331a))
(fp_line (start 6.05 1.5) (end 6.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 86586770-acba-4c83-b70d-37fa079c3365))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ae8c32ff-dbc1-4bc6-9331-07b450916f45))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eb5a50f9-3793-4d62-9666-7a74ec0118c3))
(fp_line (start 5 -1.25) (end 0 -1.25) (layer "F.Fab") (width 0.1) (tstamp 033faee7-7651-4a4f-8a96-3d2f31717d87))
(fp_line (start 0 1.25) (end 5 1.25) (layer "F.Fab") (width 0.1) (tstamp 347e7cd0-815a-4784-b21b-f01bd6093435))
(fp_line (start 0 -1.25) (end 0 1.25) (layer "F.Fab") (width 0.1) (tstamp 3f9105ef-c8bf-4a2d-b006-054fdecb3536))
(fp_line (start 5 1.25) (end 5 -1.25) (layer "F.Fab") (width 0.1) (tstamp ed5f9092-717b-4256-8df5-8d8219172ba3))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp 5fbc957d-4977-447d-bb4d-fdc4950e6863))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp dcb723da-e3ae-4e52-9072-ab5af9783c6d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 221da84e-fb59-41eb-a8fe-3141caef3d65)
(at 46.4875 116.625 90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/99b1edda-5499-4a87-b74e-a9b1b1f34166")
(attr through_hole)
(fp_text reference "C8" (at 7.62 -0.04 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9500f750-bebd-4862-bb8f-ac7eb2242ccb)
)
(fp_text value "1uF" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2917eaf-b073-4ada-ac52-8dd1d2efad95)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99eaad2d-46e4-4cb8-aaa5-e740fd6cd57d)
)
(fp_line (start -0.12 1.055) (end -0.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 49816cd5-2f7a-490f-8ce5-e29624d442a7))
(fp_line (start -0.12 1.37) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6ec658f9-aba4-4868-a0a3-4084ac210314))
(fp_line (start -0.12 -1.37) (end 5.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8ea7cb3d-aaaa-437c-943d-54b599fb2853))
(fp_line (start 5.12 1.055) (end 5.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp a412dfee-2b27-4715-92f1-4e553c32f517))
(fp_line (start -0.12 -1.37) (end -0.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp cc20931e-18aa-4b00-accb-35bc42d076e1))
(fp_line (start 5.12 -1.37) (end 5.12 -1.055) (layer "F.SilkS") (width 0.12) (tstamp fec46b65-166f-4c7e-8552-520b49e6eb15))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 080febcd-214e-4402-a78d-f5de719d4fa7))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0abcab33-eadc-4427-b2e2-13d08ec3fd04))
(fp_line (start -1.05 1.5) (end 6.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 108348da-e2b8-4a44-94af-3b2162b3be72))
(fp_line (start 6.05 1.5) (end 6.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d3fe717d-024c-435c-a13f-f7e60f4a1b1d))
(fp_line (start 5 -1.25) (end 0 -1.25) (layer "F.Fab") (width 0.1) (tstamp 067e2b3c-ad5d-4266-b193-f2f3d43c5e59))
(fp_line (start 0 1.25) (end 5 1.25) (layer "F.Fab") (width 0.1) (tstamp 207dd9d3-dcf8-4927-8a4e-887a297e3fa7))
(fp_line (start 0 -1.25) (end 0 1.25) (layer "F.Fab") (width 0.1) (tstamp a6a24201-8b8b-4d69-9865-c4d0cd2fba33))
(fp_line (start 5 1.25) (end 5 -1.25) (layer "F.Fab") (width 0.1) (tstamp f584368b-4d0d-4b9f-a85f-4a59f0390371))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 85d0a104-a1bd-4f36-9c72-99eb66d9eb29))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C8-Pad2)") (pintype "passive") (tstamp 8fa89b05-5a92-4679-90a4-8ab381506a18))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_BarrelJack:BarrelJack_Horizontal" (layer "F.Cu")
(tedit 5A1DBF6A) (tstamp 26e17c65-227b-41ca-9fbc-e8307c668153)
(at 33.3425 24.765 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/ea6398f7-1a71-489d-b8b2-a1419530bc56")
(attr through_hole)
(fp_text reference "J1" (at 0.635 -6.2815 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 428d2356-7006-4c47-9838-d36ab42d1dc7)
)
(fp_text value "Barrel_Jack_Switch_Pin3Ring" (at -6.2 -5.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80876d60-8ca7-4c9c-b9a2-22fd7b7d0fde)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f314c62d-e262-4955-ab76-6de7261081c5)
)
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 00219ce9-5f96-4095-8d13-54e4c362e87d))
(fp_line (start -5 4.6) (end -13.8 4.6) (layer "F.SilkS") (width 0.12) (tstamp 5d45a429-615a-4256-8d05-85b81cefaf44))
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer "F.SilkS") (width 0.12) (tstamp 7f00282b-5e16-47e6-b17d-b336075475e1))
(fp_line (start -13.8 4.6) (end -13.8 -4.6) (layer "F.SilkS") (width 0.12) (tstamp 932df864-9bd0-4217-9520-c2447fa50c49))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 9dac35e0-664f-4fa1-b1b2-52f20f2d1588))
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer "F.SilkS") (width 0.12) (tstamp c38d1a17-2ad7-41fb-8abc-b8ebd539c6f2))
(fp_line (start -13.8 -4.6) (end 0.9 -4.6) (layer "F.SilkS") (width 0.12) (tstamp d598dbbf-1137-4fcd-b45e-a667405e9602))
(fp_line (start 0.9 4.6) (end -1 4.6) (layer "F.SilkS") (width 0.12) (tstamp fb3c017c-fbe5-4c20-abef-8117ffa0cac9))
(fp_line (start 1 -4.5) (end 1 -2) (layer "F.CrtYd") (width 0.05) (tstamp 04d065e9-fb42-4dfc-ba38-4b284282e879))
(fp_line (start 1 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 26ad80af-2eed-4c61-9152-58feb6e1d13a))
(fp_line (start -5 4.75) (end -14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3258c77f-eba7-4664-9e75-5b96e7f0eb8e))
(fp_line (start 1 -2) (end 2 -2) (layer "F.CrtYd") (width 0.05) (tstamp 4aba8751-ee0c-4159-8160-950d2a2d4563))
(fp_line (start -5 6.75) (end -5 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 6d4d7fbf-c8a6-4ccf-aef5-e586c7776529))
(fp_line (start 1 -4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 70605cf5-daa8-4508-a18f-0b89339c69a3))
(fp_line (start -1 6.75) (end -5 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 782e048d-aa16-4240-9418-70f5e03e9f41))
(fp_line (start 1 -4.5) (end 1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 815663dd-6dc8-4649-9ffd-23d7914f11c3))
(fp_line (start -14 4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 83d1d2a6-4e1e-4dc9-97be-284b0aef93d8))
(fp_line (start 1 2) (end 1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp a08d307c-f903-4d9a-896a-421f1d03662c))
(fp_line (start 2 -2) (end 2 2) (layer "F.CrtYd") (width 0.05) (tstamp b9f2d040-5113-45ba-aa48-fff4ad1b8fff))
(fp_line (start -1 4.75) (end -1 6.75) (layer "F.CrtYd") (width 0.05) (tstamp d21731a7-e236-44f8-9903-6f68df8c07f4))
(fp_line (start 2 2) (end 1 2) (layer "F.CrtYd") (width 0.05) (tstamp e5294e16-a639-449c-ba8d-f46f4917f1a3))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 7935f4c7-906d-4c85-913d-f301e043bd11))
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer "F.Fab") (width 0.1) (tstamp 97faa530-8b7b-42bf-a47a-6413df3855c5))
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 99185b6d-7f23-4afc-8f09-3bc8815a0267))
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer "F.Fab") (width 0.1) (tstamp bb5ff93a-30a2-41e8-b487-c02c97998704))
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer "F.Fab") (width 0.1) (tstamp c0f40d15-0adc-47a7-8fa2-333ca522b6c9))
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer "F.Fab") (width 0.1) (tstamp f2571e06-0b46-486a-b1cd-f74fb95ee147))
(pad "1" thru_hole rect (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp 484c8abf-6b8a-47e2-a343-8932c8e108ec))
(pad "2" thru_hole roundrect (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 52f775e2-bd3e-4574-802f-3f50a5d41fbb))
(pad "3" thru_hole roundrect (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 067a1d99-e3a4-4c28-9df0-6ef885fb013b))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm" (layer "F.Cu")
(tedit 5995936A) (tstamp 426e15a8-8ada-4c83-b3aa-1150436b2da4)
(at 57.25711 33.025 90)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/60164f8d-4865-47ed-8891-f1cdd62bc246")
(attr through_hole)
(fp_text reference "D3" (at 1.27 -3.96 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 513d50cc-f0e3-4cf1-afd0-fc8a2d3a6678)
)
(fp_text value "LED" (at 1.27 3.96 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d20536c-7fec-4161-b794-f674b169a61d)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp fcd8c67e-5eba-499d-a56b-1a9a9548dd71)
)
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer "F.SilkS") (width 0.12) (tstamp 34e029e7-539c-4c4f-ac01-dab74274f222))
(fp_arc (start 4.26 -0.000462) (mid 2.072002 2.880433) (end -1.29 1.54483) (layer "F.SilkS") (width 0.12) (tstamp 728e0fa6-c893-4b8b-a55a-2439a3cc03a3))
(fp_arc (start -1.29 -1.54483) (mid 2.072002 -2.880433) (end 4.26 0.000462) (layer "F.SilkS") (width 0.12) (tstamp a3afa146-0a2a-402c-8300-c205375af22b))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 605e1f93-78bb-4be9-b019-0eb3ba515bfc))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 11df2383-3770-411c-9a2f-8bbe68a75460))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 8af8b461-01fd-41a3-8e0f-febd07be2cd2))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp c4ad5538-b07b-4e74-8bfb-f5c8703cb7c3))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer "F.CrtYd") (width 0.05) (tstamp e41d41a6-f575-42d1-a137-8546c90fc920))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp c06be6c5-ec5e-4ba6-9496-e0d766db49de))
(fp_arc (start -1.23 -1.469694) (mid 4.17 0.000016) (end -1.230016 1.469666) (layer "F.Fab") (width 0.1) (tstamp 79e2111a-e592-4cc1-8200-900275de9f08))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6e901ea6-7a94-442d-96fe-5820de70f776))
(pad "1" thru_hole rect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 4640bf04-f0f7-4c92-ae45-4612e5b66554))
(pad "2" thru_hole circle (at 2.54 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 65 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 4a850f11-7163-4757-bf06-a712be796c86))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W15.24mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 4332f849-b11f-4440-ad48-473438e4cd81)
(at 78.0075 97.375)
(descr "28-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" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/38ab9c19-367b-4d34-b3e1-f3d4b8396d9c")
(attr through_hole)
(fp_text reference "U4" (at 7.62 -3.19) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13ff6211-e44b-4ad1-8746-258dafef6ba6)
)
(fp_text value "W65C51N" (at 7.62 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f2f2213-d297-4eee-80ef-d298d14a7af0)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6feed929-1c9e-4bcf-af7c-da0e4adc0ca1)
)
(fp_line (start 1.16 -1.33) (end 1.16 34.35) (layer "F.SilkS") (width 0.12) (tstamp 1195b0ff-ff41-4bc2-a735-04aa273d7bf1))
(fp_line (start 1.16 34.35) (end 14.08 34.35) (layer "F.SilkS") (width 0.12) (tstamp 11a53923-4660-457b-a2d0-dfe25cfeb957))
(fp_line (start 14.08 34.35) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5384c9dd-d539-4a60-b70c-911fe5c95684))
(fp_line (start 16.57 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 6ac7b07a-cce2-4ffa-bab9-72d6e92f33e1))
(fp_line (start -1.33 34.41) (end 16.57 34.41) (layer "F.SilkS") (width 0.12) (tstamp 8655d5e9-3216-4e4d-9466-77e8c5d74906))
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9655f0a3-e227-4bc0-b166-0d9bd138ec85))
(fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bf6e290e-ad1b-43f0-83c1-89f9658f34de))
(fp_line (start -1.33 -1.39) (end -1.33 34.41) (layer "F.SilkS") (width 0.12) (tstamp e1317f03-76ff-42c4-b5b1-fe2e372116f5))
(fp_line (start 16.57 34.41) (end 16.57 -1.39) (layer "F.SilkS") (width 0.12) (tstamp f728e341-86e9-494d-a11c-0e7cb3edfc06))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp dff56e9d-a8cb-4429-bd36-ea1272795407))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 15cdb41e-1365-4634-a949-16554452dbd8))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp d936077f-b851-485d-9149-016232da9fb3))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ec020b33-44d2-45c9-b879-24796d0c80b0))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp fed21add-8dc4-4de3-ab38-2a4e5e375845))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp 0e6b941c-3f7e-468f-9e5e-dfa88e5ba357))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp 3b3a8ec5-421a-40b0-9300-8f6e202aa668))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3ddd1966-6be4-4c9b-93c5-5df1b6e99a21))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp 7062e2ff-3a9c-4594-9311-0b4719ecc789))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 9482edc1-30d3-4fa8-8e04-44ee5881ac80))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp cd26fafb-f939-49fa-adba-408fea48a4a9))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp dcece8ca-d346-4dab-8bf6-b731186ccfa9))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp dde2cc4b-385d-4ec2-b1dd-1fb88aff0a37))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp ecf6fe14-4a3d-41d1-8885-33d96d9e5abb))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp c205cf06-3b9c-4fcb-9d4b-9c08529af989))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "A12") (pinfunction "CS1") (pintype "input") (tstamp 4867958d-8bc0-4a06-9423-6368ac054532))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(U1-Pad8)") (pinfunction "~{CS2}") (pintype "input") (tstamp 0fcac855-6ad2-40be-8ba3-7582994382ad))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "RESET*") (pinfunction "~{RES}") (pintype "input") (tstamp 43158926-2b9b-47d2-89c1-95fc9486f9d2))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 61 "unconnected-(U4-Pad5)") (pinfunction "RxC") (pintype "bidirectional+no_connect") (tstamp 5906513a-f02c-4d93-a577-862f08b4acb7))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C5-Pad1)") (pinfunction "XTAL1") (pintype "input") (tstamp 326d5b24-5226-4a61-8f92-b51180ab1b67))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "XTAL") (pinfunction "XTAL2") (pintype "output") (tstamp d1a85e30-9e7f-4994-aa81-5681d5300a03))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "unconnected-(U4-Pad8)") (pinfunction "~{RTS}") (pintype "output+no_connect") (tstamp 4d4c9392-0aa4-4c3e-8470-0cd8bef8e10c))
(pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 63 "unconnected-(U4-Pad9)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp fbfc4d57-5759-4b28-9d32-e46fae60b420))
(pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 111 "Net-(U4-Pad10)") (pinfunction "TxD") (pintype "output") (tstamp 115c91bf-3b27-40e7-b7cf-c189a4235b4c))
(pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 64 "unconnected-(U4-Pad11)") (pinfunction "~{DTR}") (pintype "output+no_connect") (tstamp 2b58f4ff-3c5a-4249-a774-2a13351f2de6))
(pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 105 "MAX232_12") (pinfunction "RxD") (pintype "input") (tstamp 3beb101c-d794-465c-a5ca-4eea1abe3d32))
(pad "13" thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "A0") (pinfunction "RS0") (pintype "input") (tstamp 83efaaee-2854-439a-9669-9fe39fd61ad6))
(pad "14" thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "A1") (pinfunction "RS1") (pintype "input") (tstamp 1a1f5694-231a-4727-9067-ede1c1ae1f21))
(pad "15" thru_hole oval (at 15.24 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp f4de14b6-07ee-4db6-b113-ee07b7101a1d))
(pad "16" thru_hole oval (at 15.24 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "unconnected-(U4-Pad16)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp d3c6cd42-34bc-46b8-9e9a-529dbed64d72))
(pad "17" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 67 "unconnected-(U4-Pad17)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp 640d7b7a-bb3a-4cd5-bc67-482c535d6056))
(pad "18" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "D0") (pinfunction "D0") (pintype "bidirectional") (tstamp 33a99725-d963-439d-9a47-db92d28d5b77))
(pad "19" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "D1") (pinfunction "D1") (pintype "bidirectional") (tstamp b81a7676-a438-4337-8451-66967e82c887))
(pad "20" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 "D2") (pinfunction "D2") (pintype "bidirectional") (tstamp 83657d41-568b-4449-b111-767c85d56d5c))
(pad "21" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "D3") (pinfunction "D3") (pintype "bidirectional") (tstamp debf2389-6515-4ca1-8890-c1ddd4caf9c8))
(pad "22" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "D4") (pinfunction "D4") (pintype "bidirectional") (tstamp 844f371b-1848-45fa-b4db-4ec35f7fa0d1))
(pad "23" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "D5") (pinfunction "D5") (pintype "bidirectional") (tstamp d53705a7-44cd-41c7-bbf6-5c555bf2179f))
(pad "24" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 "D6") (pinfunction "D6") (pintype "bidirectional") (tstamp c595a95e-449d-4cbb-a60a-23ce92688f24))
(pad "25" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "D7") (pinfunction "D7") (pintype "bidirectional") (tstamp f1a3c9e2-f993-4bdc-915b-54aa6f52f3f6))
(pad "26" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(D1-Pad1)") (pinfunction "~{IRQ}") (pintype "open_collector") (tstamp 2afdb5c7-b0c3-458f-ad6b-0f4e5416ed32))
(pad "27" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "CLK") (pinfunction "ϕ2") (pintype "input") (tstamp c3a7f26d-891b-43fe-bbd5-628d7c0d8d82))
(pad "28" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "RW*") (pinfunction "R/~{W}") (pintype "input") (tstamp 52fe109e-96b3-4523-908f-bda6a7f6fdbe))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_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 52d9706b-42ec-4e2b-8352-c283c8fcadfa)
(at 50.0725 81.91 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" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/c14f08c3-c14c-4da4-bbcf-b860066f841f")
(attr through_hole)
(fp_text reference "R3" (at 12.46 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0a46f60-c35d-4885-9c00-e3b6f9c89314)
)
(fp_text value "1K" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a21238d8-d363-4a7b-8f90-c13bc1891205)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fe1cce7-e04f-41e4-b2e6-d9ff370820c5)
)
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 29b1d57b-a77c-4da1-9ceb-588436de6cb6))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 531241c7-a3c7-4fae-8ab8-bbe45e79cd87))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp abd2173c-3fd6-4a57-a807-0e8eb5d42575))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp b770fe96-c952-4a01-a9ce-02c85055caf2))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c8062518-9adc-4d7b-ac66-3a4f84a45175))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp e9cc4895-aff0-4163-be05-f9b51becfae6))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 751795c4-bc38-4ae8-9bb6-1b6cedcd8ca0))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7f83387a-29ca-4218-b30e-501ef007c002))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e8eaa775-7fa0-49fe-a924-fafa691265d8))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f38c1c60-8d92-41a4-93e2-c4702a8d311f))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3a7f2af9-d871-4c63-9aed-9e58e1552f9c))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 4300821c-c496-453e-bfc5-fd156a74cb96))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 87d7f897-2632-4329-9b6a-41501055e645))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 90329a35-8c4f-4138-9a23-894092881342))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp d447ba74-5f07-4905-9054-5da4bf95c789))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ec257715-a058-44a0-8748-49c0fc36602d))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp 1c75cc46-c31c-4da9-8fd8-d735c8ca453a))
(pad "2" thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R3-Pad2)") (pintype "passive") (tstamp 5a617251-2f25-4627-9da3-b8a482bc72d2))
(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 "Package_DIP:DIP-40_W15.24mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 56ed71fa-9b0a-44b1-97fd-952da9a5120a)
(at 79.2825 33.895)
(descr "40-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" "6502_wozmon.kicad_sch")
(property "Sheetname" "")
(path "/632e4af2-8282-4fc6-991b-eab715837c5c")
(attr through_hole)
(fp_text reference "U2" (at 7.62 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50b6a47a-f2b0-47bb-bbfe-9afdd325d3f9)
)
(fp_text value "W65C02" (at 7.62 50.59) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67dede44-4d53-4c98-ad16-7ccf6d8cb2dd)
)
(fp_text user "${REFERENCE}" (at 7.62 24.13) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19303185-7eea-4c2d-a579-249a382c2282)
)
(fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 08bebe2d-fe46-4798-973a-bb44e703ac6c))