-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1541-RAMBoard2-FirstBank.kicad_pcb
9768 lines (9748 loc) · 392 KB
/
1541-RAMBoard2-FirstBank.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")
(title_block
(title "1541-RAMBOard][")
(date "2024-04-20")
(company "YTM Enterprises")
(comment 1 "Maciej Witkowiak <[email protected]>")
)
(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 true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots")
)
)
(net 0 "")
(net 1 "/A14")
(net 2 "/R{slash}~{W}")
(net 3 "VCC")
(net 4 "GND")
(net 5 "/VPP")
(net 6 "/A12")
(net 7 "/A7")
(net 8 "/A6")
(net 9 "/A5")
(net 10 "/A4")
(net 11 "/A3")
(net 12 "/A2")
(net 13 "/A1")
(net 14 "/A0")
(net 15 "/D0")
(net 16 "/D1")
(net 17 "/D2")
(net 18 "/D3")
(net 19 "/D4")
(net 20 "/D5")
(net 21 "/D6")
(net 22 "/D7")
(net 23 "/~{ROMSEL}")
(net 24 "/A10")
(net 25 "/~{A15}")
(net 26 "/A11")
(net 27 "/A9")
(net 28 "/A8")
(net 29 "/A13")
(net 30 "/~{RAMSEL}")
(net 31 "unconnected-(U2-Pad5)")
(net 32 "unconnected-(U2-Pad6)")
(net 33 "unconnected-(U2-Pad7)")
(net 34 "unconnected-(U2-Pad9)")
(net 35 "unconnected-(U2-Pad10)")
(net 36 "unconnected-(U2-Pad12)")
(net 37 "unconnected-(U4_SOCKET1-Pad20)")
(net 38 "unconnected-(U4_SOCKET1-Pad27)")
(net 39 "Net-(RAM_A13-Pad2)")
(net 40 "Net-(RAM_A14-Pad2)")
(net 41 "Net-(R15-Pad2)")
(net 42 "Net-(R14-Pad1)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 09a2ea72-5768-46e5-b59d-9d0b73f5f24e)
(at 113.03 115.819)
(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" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/41520df8-5595-4ff3-9078-4e1bb817aa94")
(attr through_hole)
(fp_text reference "RAM_A14" (at -2.54 2.799 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 75dc18e6-4722-4111-93fb-93666c57e2b5)
)
(fp_text value "RAM_A14" (at 0 4.87) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78600ede-a29e-4575-9c56-dde87147be82)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42f1151d-57c1-411a-8ba6-abd86ff9e9a3)
)
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 016d3821-1a70-4cb1-95af-1ef00ccd6ec5))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 123385b3-7ccd-4bf0-b385-09deef9f3e70))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2d9e3c03-55ce-4914-a292-639ab1ff1246))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3ba3a24e-8dc2-4d16-97a2-309c0b460fd7))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 878378b9-7c0b-4b68-b3ad-d32056d6db49))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp af01f9cb-58e2-4576-9429-444b6c4607bc))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 840871e5-6f97-453e-b943-4b6c79b8794d))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp b2e10c03-095d-47a6-a8cd-6c0a6effe6b5))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c5b33e2a-8c26-4868-bcae-2af173ae8c85))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6c2b240-e4da-4ba4-8b05-a61a514e3afe))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 022b70e6-e8ef-469b-9c6c-47f8e3713d18))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 62b664e2-3ddb-48f0-8503-a4e3d7155446))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 93262d41-02d8-44c2-b610-380949b450bd))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ee68ddaa-f90d-4ea6-a345-b7e3a10120d3))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp efbef2eb-f957-4ff7-b417-40d19a070a10))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "A") (pintype "passive") (tstamp 4e06b93e-e847-4e67-993b-ed7ef6f8a7ea))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "Net-(RAM_A14-Pad2)") (pinfunction "B") (pintype "passive") (tstamp 14d3c182-3a96-42e4-97a3-d1e72d23ee57))
(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 "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 1239e5fe-e44c-4c88-a681-4d7567100dc4)
(at 117.856 88.392)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/7b991b6b-4c52-4125-8619-87c545df2770")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e4b90d7-8e81-4e3f-adc0-383e22d0084d)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6699beaf-c1bb-4b2f-b58d-90e4882625e4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88b825c1-6703-4a64-a965-56f5b3a99c26)
)
(fp_circle (center 0 0) (end 2.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4621e017-36d5-48cc-b48f-021b871f3a48))
(fp_circle (center 0 0) (end 2.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2a9c79ad-8169-4b63-acbd-b887cb1d10ae))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers *.Cu *.Mask) (tstamp 53051352-8cf1-4c2d-ab16-6cb1dde7a493))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 2a665a87-3cd3-4f67-94b4-ba8bf63f1dd1)
(at 116.84 115.819)
(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" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/f1599acf-8dbc-41a1-90dd-2095bdfaf2d1")
(attr through_hole)
(fp_text reference "RAM_A13" (at 2.286 2.799 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp c1e37891-e8d0-4bcb-8bcb-989081a90a94)
)
(fp_text value "RAM_A13" (at 0 4.87) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 494fcf17-4266-41bf-82da-d71d9831d354)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e7ed11a-2edf-4470-bdfd-d0a87c08731e)
)
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 2a853e1f-bb7e-43e9-992e-b46ce571fa13))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 83523946-c46d-4338-9b15-6a471fad5383))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp aacb8e23-0ce7-4d42-9934-aa13c8d1a367))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ab0fb32e-006d-41fd-8907-5cd343d621a2))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp cade9bc1-0982-451c-a08f-86d358913cc9))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f55d049d-e768-46f1-9beb-9bc6764a85f3))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2ce383c5-58ce-4687-ab35-9363a58766bb))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 57f9ce22-7e09-4b52-a65f-53ffcb51daee))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 698bef1c-5979-4ff9-8d24-bdadbd07814b))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 7a6fd1d2-f4bc-4190-a6fb-9218a8e94dc5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 54ce714f-72bc-4d3a-a79c-3da4587a4519))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 8af2503e-39ea-4997-a00a-7cb9e7c3a0b9))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d75124f9-0ffa-4379-aaf0-c56438a34fa8))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp e35779da-78c8-4df4-8f8a-96c4f9756116))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp fcd1ebfd-13de-4ba9-aa04-eb2c5b6371e8))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "A") (pintype "passive") (tstamp fc482b59-9a11-4a43-a05b-b67142164691))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(RAM_A13-Pad2)") (pinfunction "B") (pintype "passive") (tstamp 7b00b739-e927-4045-841e-8d6dfc1fd5fd))
(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-28_W15.24mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 3ac66fa4-aa98-45c8-9c7f-526442eb93ff)
(at 156.469 121.681 180)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/cf40c541-1009-460b-abae-ffa2d828a8ca")
(attr through_hole)
(fp_text reference "U1" (at 7.62 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 523d57ad-1829-4a2a-86d8-612ec799a2e7)
)
(fp_text value "27C512" (at 6.863 16.525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c9f1565-d69c-4411-91fe-caa00b4db668)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f78c1cc8-9e8b-4ed6-b650-f7efca327dba)
)
(fp_line (start 16.68 34.41) (end 16.68 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 021129f9-34fc-4ad6-b576-d4454549a9db))
(fp_line (start 1.56 34.35) (end 13.68 34.35) (layer "F.SilkS") (width 0.12) (tstamp 023eb6f1-f82f-4def-806f-4080c601c762))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0360a7fc-27b3-4252-8524-56f1c77a2ca4))
(fp_line (start 13.68 34.35) (end 13.68 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0715480b-f973-4cb6-96f9-124949f6aa6e))
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 13d296e0-fac9-486d-9a4c-f0bf4a12a636))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp 22cea81b-c6d3-4bde-bced-ba992d1b6542))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 48add28c-c5af-4a92-9a18-edf55208e59d))
(fp_line (start -1.44 34.41) (end 16.68 34.41) (layer "F.SilkS") (width 0.12) (tstamp 6652aea8-269b-4b14-b1a8-6d9dd598c9fb))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 77a51baa-69af-4ec6-9301-24a491cb0b73))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0a34b87d-9bf2-4088-b53e-686909f6a4bc))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 04895247-1dd3-4596-bc23-68ae75208c2a))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 07859e43-0efd-49bb-84e7-5843c9b17842))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 113dac44-3c97-478a-b2c7-ce7b38bf11ed))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp e6009cae-535a-4273-bc41-7120e8551f1c))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp 15fbdcc4-0c09-4ef0-a7e0-d4a19cca3625))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 403383aa-270e-4c0e-bf24-b2c8eae6d734))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4ee4a2c5-7faf-4940-802a-687e94cdb3ea))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp 4f275a56-c038-4f8c-96b9-3a82c80a60c2))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp 509ab8b1-03ab-4580-ae91-c75a40859a87))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp 65fa0a06-e101-48c4-b0a7-498243937afd))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 809f99e4-fc8b-4f43-997c-004b3132cec3))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 94e30ff0-ee90-4876-9246-038d15532e6c))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp c4db6cf8-069f-41bb-ba90-93ce36927476))
(pad "1" thru_hole rect (at 0 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "Net-(R15-Pad2)") (pinfunction "A15") (pintype "input") (tstamp 25b8c6f4-c887-4e23-8bb9-0ff075e9dafe))
(pad "2" thru_hole oval (at 0 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/A12") (pinfunction "A12") (pintype "input") (tstamp d78f0a3e-85df-47ec-a1b1-1a7e51cc9fdb))
(pad "3" thru_hole oval (at 0 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/A7") (pinfunction "A7") (pintype "input") (tstamp de7a01f3-bbb3-41e3-a536-5ca48732f557))
(pad "4" thru_hole oval (at 0 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/A6") (pinfunction "A6") (pintype "input") (tstamp ca2f8e07-6652-4eaa-be2a-984036c0eed9))
(pad "5" thru_hole oval (at 0 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/A5") (pinfunction "A5") (pintype "input") (tstamp 3696d870-b906-4091-bc60-18b04078402b))
(pad "6" thru_hole oval (at 0 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp 3fab30ba-8ef0-42dd-ba8b-cb1eac719770))
(pad "7" thru_hole oval (at 0 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/A3") (pinfunction "A3") (pintype "input") (tstamp 6e29aafa-e3d8-4490-8058-84393e0d5e45))
(pad "8" thru_hole oval (at 0 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp e5e18baa-1cf6-4073-97ed-3121c4d32a4f))
(pad "9" thru_hole oval (at 0 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/A1") (pinfunction "A1") (pintype "input") (tstamp 887121c6-8b63-4227-af2f-fcafd0bed7ab))
(pad "10" thru_hole oval (at 0 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/A0") (pinfunction "A0") (pintype "input") (tstamp 6f8c2625-4f63-4bd4-ab4b-7fb44f3610b7))
(pad "11" thru_hole oval (at 0 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp 35cb8cbd-2e90-4143-a171-110ec4560875))
(pad "12" thru_hole oval (at 0 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 9a5774c6-e05c-4e28-97ba-2ee7527dba9c))
(pad "13" thru_hole oval (at 0 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 26ef75e7-69fa-4a2f-8b1e-3eeacb04711c))
(pad "14" thru_hole oval (at 0 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e18f77de-644d-454d-94d4-dc503cc54c8a))
(pad "15" thru_hole oval (at 15.24 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp cbb17c5a-ed7f-4ec2-b47c-61df4b93fe2a))
(pad "16" thru_hole oval (at 15.24 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp 98096428-d8ed-41e9-88df-1f072b6ece7d))
(pad "17" thru_hole oval (at 15.24 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp 3286ee68-194a-44fa-9e44-55d14b7bab56))
(pad "18" thru_hole oval (at 15.24 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 0ddcfa0b-0d08-4a01-9aed-2eb68e253c7a))
(pad "19" thru_hole oval (at 15.24 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp fbdb37f1-03ec-4d46-a426-6f0f9beee369))
(pad "20" thru_hole oval (at 15.24 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/~{ROMSEL}") (pinfunction "~{CE}") (pintype "input") (tstamp 4c026e68-2e89-4ac5-8e45-6c1f652f9517))
(pad "21" thru_hole oval (at 15.24 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A10") (pinfunction "A10") (pintype "input") (tstamp d3786804-e286-4b98-ab3c-f9ac26ec5a12))
(pad "22" thru_hole oval (at 15.24 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/~{A15}") (pinfunction "~{OE}") (pintype "input") (tstamp cc950dca-b323-4af6-bca0-73947d6f7ec9))
(pad "23" thru_hole oval (at 15.24 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp 5c732ac7-d8e0-4e4c-a10b-cad230d72780))
(pad "24" thru_hole oval (at 15.24 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A9") (pinfunction "A9") (pintype "input") (tstamp 9dcc9caf-b522-49e5-a934-61282b7c8187))
(pad "25" thru_hole oval (at 15.24 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A8") (pinfunction "A8") (pintype "input") (tstamp eb035955-6d20-4981-93f9-16ed1f45ce08))
(pad "26" thru_hole oval (at 15.24 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A13") (pinfunction "A13") (pintype "input") (tstamp e3b96186-e3de-4090-9b6d-e15fb6b974be))
(pad "27" thru_hole oval (at 15.24 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "Net-(R14-Pad1)") (pinfunction "A14") (pintype "input") (tstamp 4d38a561-60a3-4abc-9bca-47d5515719e6))
(pad "28" thru_hole oval (at 15.24 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 80e5ee6c-9d5d-4e29-8595-db519d1624ad))
(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 "Package_DIP:DIP-28_W15.24mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 4298a964-39ae-4106-ba08-9d3a1b876f40)
(at 160.121 121.681 180)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/a54f057c-f8b6-4e2e-acd4-b3a4669f4b7c")
(attr through_hole)
(fp_text reference "U4_SOCKET1" (at 7.62 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21350da1-2b3e-4103-9bb5-b617a0991774)
)
(fp_text value "27128" (at 7.62 35.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04e71139-d3cd-4408-91fd-cad9f8be27e8)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 990e78f4-8d79-4f2c-b8e9-750eed9ada03)
)
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 309b5553-7bcc-4bf9-bd78-d51cf1341ce5))
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 31a411f0-af50-4dbe-af2d-930f9c735d93))
(fp_line (start -1.44 34.41) (end 16.68 34.41) (layer "F.SilkS") (width 0.12) (tstamp 4724789e-f594-4dfb-b5ee-0be569ace82d))
(fp_line (start 1.56 34.35) (end 13.68 34.35) (layer "F.SilkS") (width 0.12) (tstamp 9214e903-a67d-47e4-a034-c59cb27f3976))
(fp_line (start 16.68 34.41) (end 16.68 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 932bb48c-25d9-4d15-b737-5cd2b22f2655))
(fp_line (start 13.68 34.35) (end 13.68 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 980ad6fc-4f11-40b4-a09d-af50c6276b87))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a0597cc0-fdba-45f5-99ce-27e78328ddd9))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp bb67e559-d60e-462f-bc31-5cfd8c5f3f07))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp d4813e17-3a2c-4597-98c1-dd9a5902e610))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 98f94f28-c623-449d-933c-0a81d69d22e1))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 1a8ed50d-fbb0-409e-a00f-539e0eaab2f8))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp af7e5375-101f-40fb-95e4-3928fcf8243e))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp b660d2c8-530f-4e35-811e-1c047036f0ca))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp db473842-b26c-42f6-8e2b-723501be5332))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1794f4b0-af48-4a5b-bb12-6e78287c931e))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 21746314-93aa-4918-93d4-6d4dbdb5cd63))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp 28124865-0142-4895-8c81-237cd8a1d4f8))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp 4e3d3d82-6d88-4fa8-adb2-61be36886760))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp 67f9464a-8758-41f0-b62a-bce902317a1a))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp d61607f0-2ae3-4a95-b71f-1e8874688d99))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp d8f8f4f0-1d28-4b7e-9644-21c3e6ce7e0d))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp df5abe1d-f9c1-41a2-ac1f-0b2604eed707))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp eb61a1c2-e557-47bd-b04f-197153e5fdf4))
(pad "1" thru_hole rect (at 0 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/VPP") (pinfunction "VPP") (pintype "input") (tstamp b7a2cfa7-b31b-4fa3-bf26-909941f44777))
(pad "2" thru_hole oval (at 0 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/A12") (pinfunction "A12") (pintype "input") (tstamp 9f54e2be-849f-4a64-83e8-290209d044b9))
(pad "3" thru_hole oval (at 0 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/A7") (pinfunction "A7") (pintype "input") (tstamp a54bce77-7117-49a1-b218-d1ac2419ae7a))
(pad "4" thru_hole oval (at 0 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/A6") (pinfunction "A6") (pintype "input") (tstamp 3883bb17-dca7-49e1-8d25-790d866995fd))
(pad "5" thru_hole oval (at 0 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/A5") (pinfunction "A5") (pintype "input") (tstamp 756237bc-740a-41bf-9520-278f8cdf3975))
(pad "6" thru_hole oval (at 0 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp fb432ab8-9e49-404f-9e10-b9b2909cd258))
(pad "7" thru_hole oval (at 0 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/A3") (pinfunction "A3") (pintype "input") (tstamp ada2184e-7911-4036-9fbf-43506a9ae341))
(pad "8" thru_hole oval (at 0 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 87d9df9d-4c1e-426e-b4ce-9be02f34e61f))
(pad "9" thru_hole oval (at 0 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/A1") (pinfunction "A1") (pintype "input") (tstamp cac417b4-1444-40ac-82e1-c6a300aac5bf))
(pad "10" thru_hole oval (at 0 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/A0") (pinfunction "A0") (pintype "input") (tstamp 3e6aaeea-4fb8-4b25-8798-1e160a4d7145))
(pad "11" thru_hole oval (at 0 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp b2dbda19-aee3-44ab-9a7b-0a45ab2ec86b))
(pad "12" thru_hole oval (at 0 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 3d4ba740-ee10-4c6d-b729-3092b4e8bb76))
(pad "13" thru_hole oval (at 0 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp 4dadb263-c043-483d-9454-b623c0003886))
(pad "14" thru_hole oval (at 0 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d9b3dd4-999d-40f0-bc56-fcdcf3fcd45c))
(pad "15" thru_hole oval (at 15.24 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp 45a35966-15d7-43db-9a94-59db94783aa4))
(pad "16" thru_hole oval (at 15.24 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp a0c5b7a3-dc0e-477c-994f-9665832a0d7f))
(pad "17" thru_hole oval (at 15.24 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp 3a9058be-deef-4a8a-a51f-096da23ce534))
(pad "18" thru_hole oval (at 15.24 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 80cc845e-54bc-4567-a095-e4af73f0d217))
(pad "19" thru_hole oval (at 15.24 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp ae840f03-039a-4936-81e7-3f1a5e9b4bca))
(pad "20" thru_hole oval (at 15.24 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "unconnected-(U4_SOCKET1-Pad20)") (pinfunction "~{CE}") (pintype "input+no_connect") (tstamp cecc4962-2742-4970-b6d4-fcc559d5a15c))
(pad "21" thru_hole oval (at 15.24 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A10") (pinfunction "A10") (pintype "input") (tstamp dde3b65d-71a1-4cc2-b9a6-5c99a37b84a5))
(pad "22" thru_hole oval (at 15.24 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/~{A15}") (pinfunction "~{OE}") (pintype "input") (tstamp f2b4e36c-9996-4585-ab37-9dd153abb6b9))
(pad "23" thru_hole oval (at 15.24 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp 3327057e-6a1c-408d-8751-33cbad2a33d9))
(pad "24" thru_hole oval (at 15.24 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A9") (pinfunction "A9") (pintype "input") (tstamp 0458c846-d17e-4af7-9e00-0919405f7980))
(pad "25" thru_hole oval (at 15.24 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A8") (pinfunction "A8") (pintype "input") (tstamp 6c8cb2f6-fbe9-450e-83f6-7750c737a1b0))
(pad "26" thru_hole oval (at 15.24 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A13") (pinfunction "A13") (pintype "input") (tstamp 80d61093-66ff-45ec-80b1-46439cdf5f85))
(pad "27" thru_hole oval (at 15.24 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "unconnected-(U4_SOCKET1-Pad27)") (pinfunction "~{PGM}") (pintype "input+no_connect") (tstamp 6ffc50b9-6a0f-4f7d-b7d8-be1bd58c5419))
(pad "28" thru_hole oval (at 15.24 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 3b4df869-b125-4887-9394-8869e8e389da))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 6e86237e-aa1f-4fe6-9262-fcbeaa56f6cd)
(at 163.83 91.186 180)
(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" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/760102aa-058e-456c-be42-f63bb6dd80ce")
(attr through_hole)
(fp_text reference "ROM_A14" (at -2.54 2.54 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp ddb19619-056e-4cc6-984b-74745c97dbef)
)
(fp_text value "ROM_A14" (at 0 4.87) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88986786-f33d-4204-8600-d3a417e08da4)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7c31083-767b-48b7-b68c-48dc17a2edee)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 053c2dfb-c429-4426-a531-c955beed75a6))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 14810fce-5bea-4382-9075-0348a9e42d4d))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 22133ccb-4b6a-4202-ac91-823fcd0e9b5f))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 4e8c2b37-0225-4e43-a1cd-20a6efa966ad))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp c738d66f-79b0-4625-b16d-2bc031d85719))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp d4fc130c-9076-4f9f-9459-e199f65f3994))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2c8e7fd5-99b0-430d-a25b-fceabf2643f5))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4f625f89-d646-45fa-bc31-b259e0568eb2))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 83b27154-7d41-4b9e-a9ab-3720facc80b0))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 8c3a5b9b-c931-47d4-826d-295059409709))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 088369c1-0e45-45f7-a5e0-c033d16ce430))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 09b87bdf-e705-41ad-b8dc-257fab28ba2f))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c6370f72-c9d4-4f1d-a602-b5e6985acd8a))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp dfc219f8-a441-4bbc-842d-d2961810bbd7))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp ea42227f-2017-4a4e-87ae-1d38193b5381))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/A14") (pinfunction "A") (pintype "passive") (tstamp 7409777d-f0bd-45b0-911e-b514f6ebd2ca))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "Net-(R14-Pad1)") (pinfunction "B") (pintype "passive") (tstamp 5d456611-155d-41f7-82fc-a29c4ce5e5a9))
(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-16_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 6f4ca4b6-4e72-454d-984b-666f0b104783)
(at 118.608 110.754 180)
(descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/f36bd3fe-7e0b-4c47-be49-ee8b40dad69e")
(attr through_hole)
(fp_text reference "U2" (at 3.546 20.076) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c1165ea-8f17-4081-ac9f-69dfe76021d5)
)
(fp_text value "74LS139" (at 3.81 8.646 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 831cb1cf-b98a-4c89-8a9c-879ab1016f95)
)
(fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 728ccd34-8eed-4b55-9b89-170a06307521)
)
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 1dc8129d-6f59-4581-b8a7-cf618db9fbee))
(fp_line (start 1.56 -1.33) (end 1.56 19.11) (layer "F.SilkS") (width 0.12) (tstamp 78b58865-709b-441f-ae04-d8e61fe080e4))
(fp_line (start -1.44 19.17) (end 9.06 19.17) (layer "F.SilkS") (width 0.12) (tstamp 8db5b3f1-90ee-465d-9401-10b1487f3a0d))
(fp_line (start 9.06 19.17) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 91065415-72e9-4457-812b-e2c9ee40bf6f))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9ffaa1d5-e0d9-43fe-92f8-268818c2a2b4))
(fp_line (start 6.06 19.11) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a276816b-e3e7-446e-b50d-4e02cf7a764d))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b83a1f5f-a5ba-4853-86a6-eabd351c0cb3))
(fp_line (start 1.56 19.11) (end 6.06 19.11) (layer "F.SilkS") (width 0.12) (tstamp c6083173-99f6-487c-ab91-59c2eea3e93c))
(fp_line (start -1.44 -1.39) (end -1.44 19.17) (layer "F.SilkS") (width 0.12) (tstamp ec39c816-4899-4492-a4db-ea937d8d96a3))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 39134879-f18a-4e21-966d-c09c8362a8b5))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 27c7845b-0eae-48a7-99ba-ff3a38e1c77c))
(fp_line (start -1.55 19.4) (end 9.15 19.4) (layer "F.CrtYd") (width 0.05) (tstamp 2e2b042b-da9f-40e8-a337-b67e4d8c9883))
(fp_line (start 9.15 19.4) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 7860450b-f8fe-4fd4-8883-8fa53b2e4e2e))
(fp_line (start -1.55 -1.6) (end -1.55 19.4) (layer "F.CrtYd") (width 0.05) (tstamp de4d9fe0-7464-4ead-94f4-8765415ddca7))
(fp_line (start -1.27 19.11) (end 8.89 19.11) (layer "F.Fab") (width 0.1) (tstamp 05394855-66fd-4e7d-a83e-77fad10f1047))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 17b11bc0-5c4b-43c6-9b5e-de8cbf47d786))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2edcf93f-4a0f-4e25-9bb5-5bd3131a3a78))
(fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer "F.Fab") (width 0.1) (tstamp 4f7ca390-88b6-4c5e-817d-b23f22e7230f))
(fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 5ca952e6-c6e0-4502-9bab-41224b2d81e3))
(fp_line (start -1.27 -1.33) (end -1.27 19.11) (layer "F.Fab") (width 0.1) (tstamp 848a1dbe-c4be-4a33-887f-da1a81b283e9))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 9f55072b-baaf-4943-9c4a-b36c3222896b))
(fp_line (start 6.985 19.05) (end 0.635 19.05) (layer "F.Fab") (width 0.1) (tstamp c63ae9f6-1d46-4d2c-a881-e8f5d70559b7))
(fp_line (start 8.89 19.11) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp e59b13bd-aa02-4932-b579-249abf2d53b2))
(pad "1" thru_hole rect (at 0 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/~{A15}") (pinfunction "E") (pintype "input") (tstamp beb6286a-3328-40c2-924d-31711d0e9a15))
(pad "2" thru_hole oval (at 0 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/A13") (pinfunction "A0") (pintype "input") (tstamp 5a83c964-1862-4543-9519-5f374faad3a6))
(pad "3" thru_hole oval (at 0 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "/A14") (pinfunction "A1") (pintype "input") (tstamp 0a1b3ebb-714a-431f-9368-b4b689982d23))
(pad "4" thru_hole oval (at 0 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/~{RAMSEL}") (pinfunction "O0") (pintype "output") (tstamp 18eb6839-86c2-4d6e-a133-c5bb42fd1284))
(pad "5" thru_hole oval (at 0 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "unconnected-(U2-Pad5)") (pinfunction "O1") (pintype "output+no_connect") (tstamp 4abfc49b-be2b-47bc-b812-61d0f17dcfe1))
(pad "6" thru_hole oval (at 0 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "unconnected-(U2-Pad6)") (pinfunction "O2") (pintype "output+no_connect") (tstamp 04c0e1fc-39c8-4220-b721-2fb4fef009b5))
(pad "7" thru_hole oval (at 0 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "unconnected-(U2-Pad7)") (pinfunction "O3") (pintype "output+no_connect") (tstamp a559cd4f-6917-42b1-ac57-b911eeb7322d))
(pad "8" thru_hole oval (at 0 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d19b0c71-754a-48a7-bc61-c5026a925f52))
(pad "9" thru_hole oval (at 7.62 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "unconnected-(U2-Pad9)") (pinfunction "O3") (pintype "output+no_connect") (tstamp 2ecb467e-f73f-44f6-b28b-316eccaba1cd))
(pad "10" thru_hole oval (at 7.62 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "unconnected-(U2-Pad10)") (pinfunction "O2") (pintype "output+no_connect") (tstamp 1c888ed5-5204-459c-b272-d1e5e364c316))
(pad "11" thru_hole oval (at 7.62 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/~{ROMSEL}") (pinfunction "O1") (pintype "output") (tstamp ad761a21-1b88-4669-8a45-70951bb56661))
(pad "12" thru_hole oval (at 7.62 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "unconnected-(U2-Pad12)") (pinfunction "O0") (pintype "output+no_connect") (tstamp 8a84517b-307a-4611-939f-3df696e085e3))
(pad "13" thru_hole oval (at 7.62 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "A1") (pintype "input") (tstamp f6b004f6-6bd2-4cdb-a7e9-36ca02ef0a02))
(pad "14" thru_hole oval (at 7.62 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/~{RAMSEL}") (pinfunction "A0") (pintype "input") (tstamp 037aaf52-095d-48a0-a73c-44b3b6123bc1))
(pad "15" thru_hole oval (at 7.62 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/~{A15}") (pinfunction "E") (pintype "input") (tstamp 3855aac8-bef8-4f00-b623-62b993bc41ef))
(pad "16" thru_hole oval (at 7.62 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 49415b0b-bb99-4780-bc2a-4b8bac509b9e))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 7b43788e-4608-4c38-8a3d-402d6b63c52a)
(at 163.83 98.811 180)
(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" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/0d297e90-5d59-485d-952c-8ae4678fcd45")
(attr through_hole)
(fp_text reference "ROM_A15" (at -2.54 2.54 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 7ca23495-827d-40d2-9e20-72582fa1e4b1)
)
(fp_text value "ROM_A15" (at 0 4.87) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14610262-1fa0-4d99-ba76-58d874ae413e)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0af694bc-bdd8-4a9c-ba47-2f6422b9f96e)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0f59a0c5-eba5-42d2-92d9-6c9f9660c9f1))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 1b386e31-672b-451b-8313-1fa746b2e370))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2c46ff21-5658-4a49-a273-e1ded8a3770d))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 965d7757-87a0-4cf9-9698-fdef19f18d3e))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a6ea11d9-813a-4d9b-951d-b4e806abcd83))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp ca0bc5ba-c1da-404e-8086-3b3efabeb87e))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 031f5ae8-de18-453d-b21f-08518a08719d))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 58efb4d3-1020-4bb0-9d98-4f70035b03b6))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c9a19fae-a45e-452a-8b24-3b7bf5c2094a))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp e62b1320-179b-4b23-83e2-8ee0514b783e))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bd7281a0-b254-4861-abec-c512687875e7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d1475b2f-c6e3-4200-8814-ee7d637634ef))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp df03fca8-d28d-42c4-be1b-26acbfc96383))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f0c4879d-4cc7-436e-9597-7302ec43d42e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp f5b3553a-425c-432c-bb18-369105b97903))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/VPP") (pinfunction "A") (pintype "passive") (tstamp 1504bd02-0d71-4b18-95be-aad04d0ccce8))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "Net-(R15-Pad2)") (pinfunction "B") (pintype "passive") (tstamp f70b3f50-2574-4981-805d-761cd048bf57))
(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_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 87c6663b-0cad-4b49-9774-b18c523384ca)
(at 163.83 103.632 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/7da3db26-20ca-4dfe-8f45-fad5aaad26a5")
(attr through_hole)
(fp_text reference "R14" (at 3.81 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc20aabb-828b-473f-bd8e-c7dccf5c32ad)
)
(fp_text value "10K" (at 3.81 -2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67400830-2a4a-4128-97b5-b20239f73f4c)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4102f3c-a65a-449d-86f6-a80a009909f7)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 42e77f83-f538-42fb-99bd-4a6c90a7994a))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 6f743eb7-d77a-49b4-a1df-4d87a011950c))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 785cac17-25c6-4a22-8048-0920af4d5af0))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 97e6284b-1d4f-43fb-b52c-b555c9484ed4))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 98c285b6-1700-4aae-87f4-65352dad025b))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9a44f3ae-6992-4993-883a-85372717595a))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 12da9c34-7f11-4f0b-a472-acbbd1eaa32e))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 39e9995a-594a-487a-9baa-7109d2ad5924))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e6a6772-2f37-4126-a2b8-6703a10491ad))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ae37d001-4a70-4b3a-9cc7-fc29d00f2dd4))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 25666712-0ede-4105-af67-58d1bd95133a))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 419df818-17a0-499f-aafd-2a067ce0a4b8))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 791f1cbc-48d2-4a25-b8e5-f82672766895))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 9ee2273a-dfc8-4797-a2cc-6bfa3b8bca04))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp cd49ae88-dfa9-4b28-b70b-7400f41e4e66))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp f92d4cc2-9337-451b-b6ed-a99b8823a66e))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "Net-(R14-Pad1)") (pintype "passive") (tstamp e66d3ba1-32c2-4548-a0ba-8b962eefea5f))
(pad "2" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp cfdd3217-5d90-4a11-898d-de280eeceab0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.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_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 9178e30c-2488-4736-b10b-c4d1eb8ecde9)
(at 163.83 113.792 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/f1ee3cae-5c19-4d22-a4c6-42ee61430bd4")
(attr through_hole)
(fp_text reference "R15" (at 3.81 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1957a83a-9989-4f4b-8547-9f7387c907e1)
)
(fp_text value "10K" (at 3.81 -2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 981a26c2-4cd3-4ee9-884c-4514c97794c2)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20123559-9e5b-48b9-9ec8-0c965b14a464)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 16f8c572-9fdf-4b03-b741-f4aea2db6247))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1b290965-4f7d-4313-b6be-61cf4f36fd8c))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 576caed6-6fba-4722-b8b0-456ca97aa060))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 638c0bcb-35a3-47af-a1c6-7383e016bcf9))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7df0b6b6-8382-44ae-b6ca-424344aee4b0))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dd9d6bcb-e5cb-4769-a996-702430527dac))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0eae7560-b2a9-43a1-b61e-795a9f49acaf))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3912c181-16c2-4962-8b47-1b1ac86a2d28))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6276f938-cd04-4bf3-b8dd-0b4f0e20cf79))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 749e314a-ba82-45e9-8281-3ffe93499db1))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 059b76ab-557f-4614-ba08-5d2ce5dabd2d))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 0db9d14e-0fe6-4c1e-8b77-c48114af0f33))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 4f042b81-5cc8-492a-aea2-7a71745f9b81))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp a59f740a-ce98-48d2-b2b4-dae1e0c61df3))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp e940f3b9-0c30-40ee-b80a-f7cdcaf2d614))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp ef8fd16d-4bef-4ce5-931d-7c27ce39d355))
(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 fe983fd8-e225-4719-92d8-1838c812d570))
(pad "2" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "Net-(R15-Pad2)") (pintype "passive") (tstamp 2d6941ec-be3e-4327-b586-a1c26cc1232f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W15.24mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp a60c5822-f8c8-4002-b728-1a7c344854ae)
(at 137.673 121.681 180)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(property "Sheetfile" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/60da1df5-5c10-4773-a440-cf69229b3983")
(attr through_hole)
(fp_text reference "U3" (at 7.62 1.793) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a08f8158-1067-414c-a1b6-64353ca4da14)
)
(fp_text value "KM62256CLP" (at 7.625 16.525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a2f89cf-39e4-4e17-8e7a-03e430986bef)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10830857-e177-417d-b875-ef54102a7edb)
)
(fp_line (start 1.56 34.35) (end 13.68 34.35) (layer "F.SilkS") (width 0.12) (tstamp 0f16a0d9-f23f-469b-894b-4abaec12f456))
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 1fb4589f-b9d6-4e9f-bf61-45bb9b02d611))
(fp_line (start 16.68 34.41) (end 16.68 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 5511c587-aff1-47c4-9afd-ec8fd508c1ee))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 57b1c245-934d-45be-be85-489a059c1121))
(fp_line (start -1.44 34.41) (end 16.68 34.41) (layer "F.SilkS") (width 0.12) (tstamp 753a24e8-403d-49a5-be75-c00e6fb6a46e))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp 7c3e5128-2eea-4bf2-951d-ddb6b6257129))
(fp_line (start 13.68 34.35) (end 13.68 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c6e5b0e8-6161-4afa-b283-82d2ea0047bd))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp d7ed7600-2a24-486f-b122-405b83b7f200))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e0a132bf-f161-4fac-b190-241dddb4555f))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b7125a2d-402f-42d4-8b9c-4014cd7af3af))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 1cd60ee5-b38c-4968-a0a5-82187edc154d))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 2d30ab1c-8a81-4409-97bd-bca91ba8c4b5))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 8c08a4f6-199f-4ea3-bca2-e248b44502f4))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp cd3d5384-0e85-459d-b94e-102275483c03))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp 46a7dbbf-544c-4b39-938a-1424e31868f2))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 529ac7b7-2c97-40e0-99d9-e216b21c3f16))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 74b24040-e3ae-4f29-9f06-1717ce700f91))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp bab51d14-36a8-4ce1-aec7-09ce1b15d586))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp cd5d51ab-7e18-4023-9490-b14f38be2e58))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp cecc5b4d-0d55-49b3-8d56-38541d7ffabb))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp e1a953d2-4d64-48af-9a21-7d1440b3443e))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp e97efda0-f4f9-4aea-a3b5-4d7cbf6021c5))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp ed4e1db3-da30-48ef-969c-cef7b357d85f))
(pad "1" thru_hole rect (at 0 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "Net-(RAM_A14-Pad2)") (pinfunction "A14") (pintype "input") (tstamp 2ce8e741-7c2d-420c-99e2-a85de09333be))
(pad "2" thru_hole oval (at 0 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/A12") (pinfunction "A12") (pintype "input") (tstamp 18361451-59ff-4667-a517-abbda4159e8e))
(pad "3" thru_hole oval (at 0 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/A7") (pinfunction "A7") (pintype "input") (tstamp b6aedc0e-72e8-4649-a2d9-ef057b142fa7))
(pad "4" thru_hole oval (at 0 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/A6") (pinfunction "A6") (pintype "input") (tstamp 52cd8362-0d22-4e38-9d4a-8bc2743c5216))
(pad "5" thru_hole oval (at 0 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/A5") (pinfunction "A5") (pintype "input") (tstamp d24bf8aa-f97c-4e05-83bd-d2d17eb89e3e))
(pad "6" thru_hole oval (at 0 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp b7c72b2a-be37-4e3f-a1ef-fb88bd416b79))
(pad "7" thru_hole oval (at 0 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/A3") (pinfunction "A3") (pintype "input") (tstamp 3a91ec6c-59db-46dc-a0a7-832e9936561d))
(pad "8" thru_hole oval (at 0 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 1b1bb99a-999a-487d-a483-719684636a05))
(pad "9" thru_hole oval (at 0 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/A1") (pinfunction "A1") (pintype "input") (tstamp 5723d099-a2dd-4a0f-b6f8-c3fe04cf078d))
(pad "10" thru_hole oval (at 0 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/A0") (pinfunction "A0") (pintype "input") (tstamp 85f73e89-4d66-4e38-b481-a3aa34a0a195))
(pad "11" thru_hole oval (at 0 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/D0") (pinfunction "Q0") (pintype "tri_state") (tstamp ea8c6e7a-d1b9-4fb4-89d2-b34d2c028505))
(pad "12" thru_hole oval (at 0 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/D1") (pinfunction "Q1") (pintype "tri_state") (tstamp bd898e26-1a24-48e4-b03e-e19fec3e8d76))
(pad "13" thru_hole oval (at 0 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/D2") (pinfunction "Q2") (pintype "tri_state") (tstamp ac9c2b1d-f80a-48d7-919d-62464238a29f))
(pad "14" thru_hole oval (at 0 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e040c513-f261-468e-a59e-1ffcedb61506))
(pad "15" thru_hole oval (at 15.24 33.02 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/D3") (pinfunction "Q3") (pintype "tri_state") (tstamp 2fa8fb43-8d45-41f0-a6cf-884084122809))
(pad "16" thru_hole oval (at 15.24 30.48 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/D4") (pinfunction "Q4") (pintype "tri_state") (tstamp 87534bb9-18f9-4220-bfb4-e2c8538df58f))
(pad "17" thru_hole oval (at 15.24 27.94 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/D5") (pinfunction "Q5") (pintype "tri_state") (tstamp f7b6cbf0-fa11-4fbe-b5ba-6101f6a8ba3e))
(pad "18" thru_hole oval (at 15.24 25.4 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/D6") (pinfunction "Q6") (pintype "tri_state") (tstamp 966ad220-3d24-464f-8df7-fb9e85134de5))
(pad "19" thru_hole oval (at 15.24 22.86 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/D7") (pinfunction "Q7") (pintype "tri_state") (tstamp a3f454f1-b65b-4588-a7ce-bad57a3e6925))
(pad "20" thru_hole oval (at 15.24 20.32 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/~{RAMSEL}") (pinfunction "~{CS}") (pintype "input") (tstamp d1dce9a9-4472-4e7d-8afe-54bc563a5918))
(pad "21" thru_hole oval (at 15.24 17.78 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A10") (pinfunction "A10") (pintype "input") (tstamp ecd5a8c9-cfe2-49ac-896f-65467fa6cd74))
(pad "22" thru_hole oval (at 15.24 15.24 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/~{A15}") (pinfunction "~{OE}") (pintype "input") (tstamp 0bdeac8a-92e6-42ca-b0fe-2522ef6bf16c))
(pad "23" thru_hole oval (at 15.24 12.7 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A11") (pinfunction "A11") (pintype "input") (tstamp a8ff3851-5cc3-4483-9a2c-2afaf406f2a2))
(pad "24" thru_hole oval (at 15.24 10.16 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A9") (pinfunction "A9") (pintype "input") (tstamp 0a4067a3-3e3f-4de2-9c89-3221e4cc722d))
(pad "25" thru_hole oval (at 15.24 7.62 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A8") (pinfunction "A8") (pintype "input") (tstamp 695c24db-abe9-41bb-8383-0794837a9a54))
(pad "26" thru_hole oval (at 15.24 5.08 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "Net-(RAM_A13-Pad2)") (pinfunction "A13") (pintype "input") (tstamp 54612520-2c7f-4d90-9915-2382054b0737))
(pad "27" thru_hole oval (at 15.24 2.54 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "/R{slash}~{W}") (pinfunction "~{WE}") (pintype "input") (tstamp 49354df6-b208-4ef9-bd63-83d83aa32117))
(pad "28" thru_hole oval (at 15.24 0 180) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp a18cedd0-741b-46e5-9c07-e19c9b1d87b3))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp cb1414a2-a726-4627-a8b9-ce2e982be12b)
(at 116.078 123.952 -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" "1541-RAMBoard2-FirstBank.kicad_sch")
(property "Sheetname" "")
(path "/56386386-835a-49c4-b575-e01bb24f6843")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45c6aac9-6b91-41d6-b7b3-2c396788139c)
)
(fp_text value "Conn_01x02_Male" (at 0 4.87 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 228ea721-1725-4955-acc2-0bfa0b7eddb1)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 407a6b62-cb5a-45fc-b20e-91a2c7efa1e6)
)
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 010090a4-9583-40b3-bf3d-37a0514797be))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27b0c50b-149a-449f-81b8-1c4c965d2fee))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 3ec394cc-4b87-4b9a-9de0-07f9abfaca92))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 61b1e4e7-1a69-46cf-9cc8-71ac390df84f))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ba1b368b-f995-4049-bd84-104b3247e9a2))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp f8cb9532-0ec9-4d5a-aae7-2e67dba91291))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 6c4458bb-12bd-4fdd-a135-8093de1ad189))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8454dc37-ba04-4f8f-88e6-d8cdca4072e2))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp aaa74a3f-d570-4d5b-bc43-3efb698658a1))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f32ea341-bbbc-4a20-9f26-c966620ff6e6))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 08f33b02-8dfe-48e9-a93a-44cb911f05fb))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1b2a0c97-107b-4800-862d-606b6db0f339))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 667c2dc4-2dc4-4a5d-9a9b-da20597a188c))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp cc27e39b-747d-4efb-8759-8d87fec49c86))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp d25c2249-d198-4fc9-8dac-0a3cbe4b87c5))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/A14") (pinfunction "Pin_1") (pintype "passive") (tstamp 79aca10d-5124-40cf-bad4-3dad9038f293))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/R{slash}~{W}") (pinfunction "Pin_2") (pintype "passive") (tstamp d20b91cb-926a-44d9-bdac-7af4423fbd69))
(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))
)
)
(gr_line (start 167.64 85.598) (end 167.64 126.238) (layer "Edge.Cuts") (width 0.1) (tstamp 191eb51c-4bdf-47b3-a7bb-171b2b383999))
(gr_line (start 167.64 126.238) (end 108.966 126.238) (layer "Edge.Cuts") (width 0.1) (tstamp 2a54eb3d-55f9-4dac-b359-16c588d98035))
(gr_line (start 108.966 85.598) (end 167.64 85.598) (layer "Edge.Cuts") (width 0.1) (tstamp 9e6b2fd1-d91e-4068-9b3d-7c25da0faa6d))
(gr_line (start 108.966 126.238) (end 108.966 85.598) (layer "Edge.Cuts") (width 0.1) (tstamp ad8f282d-95bc-40c0-ad4f-b31924508298))
(gr_text "RAM_A13/14 jumpers\nclosed: GND for 8K\nopened: connect to VIA#2 PA to have 8K banks " (at 126.238 87.376 90) (layer "B.SilkS") (tstamp 1481ebd7-dcd7-432e-8314-a97e89216c8a)
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left mirror))
)
(gr_text "ROM_A14\nclosed: $A000-$FFFF is ROM, omit R14\nopen: $C000-$FFFF is ROM, install R14\n and switch between round pad and GND\nROM_A15\nclosed: 32K ROM or upper half or 64K ROM, omit R15\nopen: install R15 and switch between round pad and GND" (at 150.622 87.63 90) (layer "B.SilkS") (tstamp 2cdc4898-5a33-437c-a805-165c4e6608ec)
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left mirror))
)
(gr_text "1541-RAMBOard][ v1.1\n(c) IV 2024 Maciej Witkowiak, <[email protected]>" (at 113.792 87.63 90) (layer "B.SilkS") (tstamp 5d07a19c-bff0-44b6-9b6b-19f41ded05ba)
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left mirror))
)
(gr_text "J1\nA14 from CPU (U3) pin 24\nR/~{W} from onboard RAM (U5) pin 21" (at 131.826 87.360143 90) (layer "B.SilkS") (tstamp 923ce71c-5269-40e0-9fa7-b7f2e1d0562d)
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left mirror))
)
(gr_text "^socket" (at 143.002 124.206) (layer "F.SilkS") (tstamp 778ea886-7062-4fd5-beb4-b4f3ed5f7726)
(effects (font (size 0.7 0.7) (thickness 0.15)))
)
(gr_text "R/~{W} | A14" (at 114.808 121.666) (layer "F.SilkS") (tstamp 87a3dac4-eb4d-4ca0-82f9-30d0ef515918)
(effects (font (size 0.7 0.7) (thickness 0.15)))
)
(gr_text "pins^" (at 160.274 124.206) (layer "F.SilkS") (tstamp 8fe2a776-de21-4db1-a620-3f2c00c7d73e)
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify right))
)
(gr_text "GND" (at 114.808 113.538) (layer "F.SilkS") (tstamp d0c7cd4a-b9ac-4391-9380-2a5df7d9a6a6)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp 91ca2c64-8816-4279-b654-7bcf5b136b3d)
(pts (xy 108.966 85.598) (xy 167.64 85.598))
(height -6.096)
(gr_text "58.6740 mm" (at 138.303 78.352) (layer "Dwgs.User") (tstamp 91ca2c64-8816-4279-b654-7bcf5b136b3d)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Fab") (tstamp 9095afa2-31c6-45ca-aa83-aaebf653f0d6)
(pts (xy 167.64 85.598) (xy 167.64 126.238))
(height -4.572)
(gr_text "40.6400 mm" (at 171.062 105.918 90) (layer "F.Fab") (tstamp 9095afa2-31c6-45ca-aa83-aaebf653f0d6)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.1) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 116.078 123.952) (end 116.078 122.7751) (width 0.25) (layer "B.Cu") (net 1) (tstamp 0f21f889-ee32-4ff6-a424-66437749433c))
(segment (start 115.1186 108.7299) (end 118.1745 105.674) (width 0.25) (layer "B.Cu") (net 1) (tstamp 11be515f-002a-400b-b806-e76edd9a8bc2))
(segment (start 138.8835 95.3888) (end 138.5915 95.0968) (width 0.25) (layer "B.Cu") (net 1) (tstamp 1a29cd47-268a-410f-b9aa-5527cf750a9d))
(segment (start 138.5915 95.0968) (end 134.8417 95.0968) (width 0.25) (layer "B.Cu") (net 1) (tstamp 1dd407fe-600f-444a-9ee9-2411839ddcd7))
(segment (start 140.0083 95.3888) (end 138.8835 95.3888) (width 0.25) (layer "B.Cu") (net 1) (tstamp 2580cd4e-8c70-485c-874d-192748ab9a06))
(segment (start 147.5152 95.1487) (end 140.2484 95.1487) (width 0.25) (layer "B.Cu") (net 1) (tstamp 26786f38-e195-4968-9cdb-d83a27a8774f))
(segment (start 116.078 122.7751) (end 115.1186 121.8157) (width 0.25) (layer "B.Cu") (net 1) (tstamp 3489cb76-8824-4621-ae61-da320cf4140d))
(segment (start 118.608 105.674) (end 118.1745 105.674) (width 0.25) (layer "B.Cu") (net 1) (tstamp 4801fe98-75ab-416d-9bad-10da6b34199e))
(segment (start 150.301 92.3629) (end 147.5152 95.1487) (width 0.25) (layer "B.Cu") (net 1) (tstamp 681d802d-79c8-45af-9f95-fbfeaf9957b8))
(segment (start 161.4762 92.3629) (end 150.301 92.3629) (width 0.25) (layer "B.Cu") (net 1) (tstamp 9a1edf53-21e0-4a70-8d3d-53e1d57144a3))
(segment (start 127.3075 102.631) (end 121.2175 102.631) (width 0.25) (layer "B.Cu") (net 1) (tstamp a0260279-16a8-4428-b76e-a2be5e876db9))
(segment (start 163.83 91.186) (end 162.6531 91.186) (width 0.25) (layer "B.Cu") (net 1) (tstamp d4138e77-ca4a-41c7-ac1e-0177a5dca1c1))
(segment (start 140.2484 95.1487) (end 140.0083 95.3888) (width 0.25) (layer "B.Cu") (net 1) (tstamp d6c7e76f-64c8-40aa-87c8-e7fc4f403825))
(segment (start 121.2175 102.631) (end 118.1745 105.674) (width 0.25) (layer "B.Cu") (net 1) (tstamp e925772f-95fc-4b49-b1b5-69373fd75833))
(segment (start 134.8417 95.0968) (end 127.3075 102.631) (width 0.25) (layer "B.Cu") (net 1) (tstamp ee2e9bb6-0f64-49bc-81f3-2a6cd751bd09))
(segment (start 115.1186 121.8157) (end 115.1186 108.7299) (width 0.25) (layer "B.Cu") (net 1) (tstamp f1f3b650-3791-4d73-b64b-57f2353ee20e))
(segment (start 162.6531 91.186) (end 161.4762 92.3629) (width 0.25) (layer "B.Cu") (net 1) (tstamp f38fa930-b407-4e03-a3f7-a4b9a7f62cb7))
(segment (start 113.538 123.952) (end 114.7149 123.952) (width 0.25) (layer "F.Cu") (net 2) (tstamp 34100c71-02b4-46e2-a966-5a76fee0e001))
(segment (start 118.0139 122.0332) (end 120.9061 119.141) (width 0.25) (layer "F.Cu") (net 2) (tstamp 49efab05-3e9f-4421-8858-735ca1140f0d))
(segment (start 115.7767 122.0332) (end 118.0139 122.0332) (width 0.25) (layer "F.Cu") (net 2) (tstamp c565f812-9e89-4e93-83ab-24a085922944))
(segment (start 114.7149 123.095) (end 115.7767 122.0332) (width 0.25) (layer "F.Cu") (net 2) (tstamp c5aadd8a-6e1b-45c7-8451-8dfa4f52e212))
(segment (start 122.433 119.141) (end 120.9061 119.141) (width 0.25) (layer "F.Cu") (net 2) (tstamp ce001733-2c88-4cab-8168-86ad1e05589b))
(segment (start 114.7149 123.952) (end 114.7149 123.095) (width 0.25) (layer "F.Cu") (net 2) (tstamp fb962674-ed90-414d-bbe8-ec85d06bdf83))
(segment (start 122.433 121.681) (end 123.9599 121.681) (width 0.25) (layer "F.Cu") (net 3) (tstamp 328963ee-67e2-4644-9293-00bd1769e894))
(segment (start 162.291 115.331) (end 163.83 113.792) (width 0.25) (layer "F.Cu") (net 3) (tstamp 35375421-6da6-4b2e-bfb8-0c081d314524))
(segment (start 112.5149 110.754) (end 114.9888 113.2279) (width 0.25) (layer "F.Cu") (net 3) (tstamp 4ee0535a-64f2-4510-9883-8b26246157a6))
(segment (start 141.229 121.681) (end 139.7021 121.681) (width 0.25) (layer "F.Cu") (net 3) (tstamp 561e19ad-9b6d-4e3a-a8e2-6a08364b7aac))
(segment (start 138.9387 120.4834) (end 139.7021 121.2468) (width 0.25) (layer "F.Cu") (net 3) (tstamp 62eee8fe-c9dd-451c-acb3-9de624b86901))
(segment (start 125.1575 120.4834) (end 138.9387 120.4834) (width 0.25) (layer "F.Cu") (net 3) (tstamp 9b1a2862-9428-40e1-baac-7906f38aa5eb))
(segment (start 153.297 116.3591) (end 154.3251 115.331) (width 0.25) (layer "F.Cu") (net 3) (tstamp be74278c-d1f0-4458-88a6-5e9bfb6e4c68))
(segment (start 110.988 110.754) (end 112.5149 110.754) (width 0.25) (layer "F.Cu") (net 3) (tstamp c02c50f0-cde2-4a0d-8423-3056a1234677))
(segment (start 154.3251 115.331) (end 162.291 115.331) (width 0.25) (layer "F.Cu") (net 3) (tstamp d0517fe7-9cab-47ef-8493-86c2017df9c2))
(segment (start 114.9888 113.2279) (end 115.9536 113.2279) (width 0.25) (layer "F.Cu") (net 3) (tstamp dcf58985-d2c0-47a8-b6de-1fa9d1be3cbe))
(segment (start 123.9599 121.681) (end 125.1575 120.4834) (width 0.25) (layer "F.Cu") (net 3) (tstamp ea8e73eb-3aea-42f6-890a-8e7a6076168b))
(segment (start 139.7021 121.2468) (end 139.7021 121.681) (width 0.25) (layer "F.Cu") (net 3) (tstamp ee18ca35-6e4b-43ad-a952-053424675465))
(segment (start 144.881 121.681) (end 141.229 121.681) (width 0.25) (layer "F.Cu") (net 3) (tstamp efc5fb82-a285-41d5-9339-a88a90537b6f))
(via (at 153.297 116.3591) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 255a0155-d899-4edb-a5c4-dbb3b6fd6c00))
(via (at 115.9536 113.2279) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp f59ce34b-65d1-4dc4-9df6-8ff104e75f1e))
(segment (start 146.4079 121.681) (end 151.7298 116.3591) (width 0.25) (layer "B.Cu") (net 3) (tstamp 00256f59-5d0f-4fcc-91d2-d4d55c08592c))
(segment (start 151.7298 116.3591) (end 153.297 116.3591) (width 0.25) (layer "B.Cu") (net 3) (tstamp 0e239272-a47a-425c-88bc-2da5d9d1d49f))
(segment (start 120.9061 117.7067) (end 116.4273 113.2279) (width 0.25) (layer "B.Cu") (net 3) (tstamp 1462617a-129f-4ef7-b9f0-a9cb421f6ac8))
(segment (start 120.9061 121.681) (end 120.9061 117.7067) (width 0.25) (layer "B.Cu") (net 3) (tstamp 221fd2a0-01a3-4d6b-a2fe-4c679e637221))
(segment (start 163.83 113.792) (end 163.83 111.252) (width 0.25) (layer "B.Cu") (net 3) (tstamp 538c8180-e64e-4dcf-881d-9f56d1d1fb5a))
(segment (start 122.433 121.681) (end 120.9061 121.681) (width 0.25) (layer "B.Cu") (net 3) (tstamp 72ce33cd-f8c3-408e-bf90-80cd00d7c3ca))
(segment (start 116.4273 113.2279) (end 115.9536 113.2279) (width 0.25) (layer "B.Cu") (net 3) (tstamp 8002d38e-16a7-4bfd-be8a-39633f5f7097))
(segment (start 144.881 121.681) (end 146.4079 121.681) (width 0.25) (layer "B.Cu") (net 3) (tstamp da733660-4285-4af0-98b2-92f7debd64d4))
(segment (start 116.84 115.819) (end 113.03 115.819) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7af03c6d-191b-41c3-8dc7-9732f7e3a872))
(segment (start 160.121 88.661) (end 156.469 88.661) (width 0.25) (layer "F.Cu") (net 4) (tstamp b0f0fa80-58be-4166-b128-ce59a756b3c6))
(segment (start 120.602 92.5069) (end 132.3002 92.5069) (width 0.25) (layer "B.Cu") (net 4) (tstamp 0565f509-6522-4173-a3d2-0c9581716ad7))
(segment (start 120.1349 92.974) (end 120.602 92.5069) (width 0.25) (layer "B.Cu") (net 4) (tstamp 0b74ed2e-fe1a-481a-bdbf-9de19be0ed24))
(segment (start 112.5149 103.134) (end 112.5149 114.127) (width 0.25) (layer "B.Cu") (net 4) (tstamp 34273ce4-85a3-4004-8981-fd47b4d57c41))
(segment (start 137.673 88.661) (end 136.1461 88.661) (width 0.25) (layer "B.Cu") (net 4) (tstamp 3f513434-ae9f-489f-9c05-222e4ebc02c0))
(segment (start 156.469 88.661) (end 154.9421 88.661) (width 0.25) (layer "B.Cu") (net 4) (tstamp 405d924c-c240-401f-811a-c4202adda438))
(segment (start 140.3904 89.8515) (end 153.7516 89.8515) (width 0.25) (layer "B.Cu") (net 4) (tstamp 5ad4cb67-d9e8-4974-9dd2-6ef0a5a0daa0))
(segment (start 119.0415 92.974) (end 120.1349 92.974) (width 0.25) (layer "B.Cu") (net 4) (tstamp 5ae8395f-9251-4905-98a2-2e5ac4b3ed99))
(segment (start 113.03 115.819) (end 113.03 114.6421) (width 0.25) (layer "B.Cu") (net 4) (tstamp 60b4eeed-d78b-4d5a-a7e5-47168cdff08f))
(segment (start 153.7516 89.8515) (end 154.9421 88.661) (width 0.25) (layer "B.Cu") (net 4) (tstamp 646d6e92-0ba2-491c-815f-0c11a6564670))
(segment (start 110.988 103.134) (end 112.5149 103.134) (width 0.25) (layer "B.Cu") (net 4) (tstamp 7a68fdc3-1d8e-4223-b900-f654b9b02021))
(segment (start 118.608 92.974) (end 119.0415 92.974) (width 0.25) (layer "B.Cu") (net 4) (tstamp 85045cd6-fbb5-4da5-9412-010de02c9834))
(segment (start 119.0415 92.974) (end 112.5149 99.5006) (width 0.25) (layer "B.Cu") (net 4) (tstamp 8a9db3d8-5d50-4f26-ac9b-a7b76d1f6e26))
(segment (start 112.5149 99.5006) (end 112.5149 103.134) (width 0.25) (layer "B.Cu") (net 4) (tstamp 9a6d0b88-bfbd-4fd4-bc3e-52efe1227de9))
(segment (start 139.1999 88.661) (end 140.3904 89.8515) (width 0.25) (layer "B.Cu") (net 4) (tstamp a8272664-50c8-45d2-a68b-8b15745badb5))
(segment (start 112.5149 114.127) (end 113.03 114.6421) (width 0.25) (layer "B.Cu") (net 4) (tstamp b4f6bd4b-5239-40f5-adb9-0150c70b71da))
(segment (start 132.3002 92.5069) (end 136.1461 88.661) (width 0.25) (layer "B.Cu") (net 4) (tstamp e63bb650-ddf7-48d2-a789-6d9fe531e9d1))
(segment (start 137.673 88.661) (end 139.1999 88.661) (width 0.25) (layer "B.Cu") (net 4) (tstamp fdf935cb-22b0-4ac7-82f9-ea79e21c3410))