-
Notifications
You must be signed in to change notification settings - Fork 1
/
TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch
1020 lines (998 loc) · 40.2 KB
/
TRS-80_100_200_Option_ROM_programming_adapter.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid 03ffaaff-b13a-434e-a417-ac4be8fe8fd3)
(paper "USLetter")
(title_block
(title "M100 option rom to 27C256 pinout programming adapter")
(date "2022-10-12")
(rev "003")
(company "Brian K. White - [email protected]")
)
(lib_symbols
(symbol "000_LOCAL:27C256" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "27C256" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "000_LOCAL:DIP-28_W15.24mm_pcb_sil_pins" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "OTP UV EPROM 256 KiBit" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "OTP/UV EPROM 256 KiBit" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "27C256_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at -10.16 -17.78 0) (length 2.54)
(name "VPP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:Jumper_2_Bridged" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_2_Bridged" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Jumper, 2-pole, closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Bridged*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_2_Bridged_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Jumper_2_Bridged_0_1"
(arc (start 1.524 0.254) (mid 0 0.762) (end -1.524 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Jumper_2_Bridged_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:Jumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Jumper, 2-pole, closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Bridged*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_2_Open_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Jumper_2_Open_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:Tandy_100_102_200_option_rom" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Tandy_100_102_200_option_rom" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Tandy_100_102_200_option_rom_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "AD0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "AD1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "AD2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "AD3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "AD4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "AD5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "AD6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "AD7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -17.78 0) (length 2.54)
(name "ALE/~{CE}" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 134.62 132.08) (diameter 0) (color 0 0 0 0)
(uuid 7de5236f-9a1d-4a22-a0b2-c4004024162e)
)
(junction (at 134.62 127) (diameter 0) (color 0 0 0 0)
(uuid f124fdb3-f125-4d97-b7fd-5fc3f4727ba4)
)
(wire (pts (xy 134.62 127) (xy 134.62 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae8968b2-212f-4b75-ae8f-140f2aab9121)
)
(wire (pts (xy 134.62 132.08) (xy 134.62 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8881564-7400-4b14-81aa-2a4143ea5710)
)
(wire (pts (xy 134.62 137.16) (xy 134.62 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb106b2a-2734-45d8-a478-cf15a7fa3080)
)
(text "Normally connect ALE to ~{CE} (JP4).\nJP1, JP2, JP3, and N/C are all special case."
(at 120.65 147.32 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b141cb2d-5c21-44af-8ca2-67353d639262)
)
(label "A1" (at 161.29 64.77 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 00a513d4-4aa5-4e58-a177-b1a3a895c42a)
)
(label "D6" (at 181.61 77.47 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 05a57e6d-293a-4471-a2ee-74807c05983b)
)
(label "A1" (at 91.44 64.77 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a737454-9d3d-4906-afc8-29454036fb38)
)
(label "VPP" (at 91.44 102.87 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0ad54a46-1a2f-4462-9dd6-f8a56aa5fb71)
)
(label "A11" (at 91.44 90.17 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0b83f812-adb4-4f5f-ac5d-f252a0a3a01e)
)
(label "D5" (at 181.61 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0fea3578-6add-4d12-b9c5-78b4942949b2)
)
(label "A8" (at 161.29 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0fec9919-ce29-41b2-82a8-dcdd8e508452)
)
(label "D2" (at 111.76 67.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 13973777-e747-4d59-a40b-616651f63c72)
)
(label "A2" (at 161.29 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 19a82b02-49a3-4328-a2e8-734d59a94f89)
)
(label "ALE{slash}~{CE}" (at 161.29 102.87 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 21f30c35-fc68-45b3-b9b1-394310b9cf79)
)
(label "D5" (at 111.76 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 32d9c8be-8b5a-4d3a-a204-078561da2ac6)
)
(label "A10" (at 91.44 87.63 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 34738a87-de90-4ae2-bed9-a79e351dbc40)
)
(label "A4" (at 161.29 72.39 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3641abb0-dd17-4f92-8d56-a0588138b2c2)
)
(label "D1" (at 111.76 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 41eb016e-b3c4-4c5d-99e7-f25b62d12556)
)
(label "A5" (at 161.29 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 43a33885-9a26-4afa-998f-de2f07a21509)
)
(label "~{OE}" (at 161.29 105.41 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 49333365-7e62-426e-b57a-07c254b815b2)
)
(label "A14" (at 91.44 97.79 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 53e9f352-f6fc-429e-a843-123d05174157)
)
(label "D3" (at 181.61 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 62ff3914-733b-4bb0-9714-422e386935ee)
)
(label "D3" (at 111.76 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 655494a9-bdfd-4815-9190-9fab003edfde)
)
(label "D2" (at 181.61 67.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6dc0cae4-f986-4b2b-8a37-5f57d429b407)
)
(label "A12" (at 161.29 92.71 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7130b6f6-fb31-40f7-bdd5-2b4d751134d1)
)
(label "A13" (at 161.29 95.25 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 716ecf8d-b980-49d2-8c42-b8f19ef0bd3d)
)
(label "A3" (at 91.44 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 75dd2e9f-6b67-4235-8a17-d40b6f3af058)
)
(label "~{CE}" (at 161.29 107.95 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7fcbe276-d70f-4524-8721-d209b1b75f85)
)
(label "D0" (at 181.61 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8443cb8b-1ac1-4241-b21c-5f06201c80a9)
)
(label "VPP" (at 144.78 127 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 84f7ce86-bbbc-446f-b964-7653e05bc66d)
)
(label "A9" (at 91.44 85.09 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 88a820a9-d16e-4195-8618-b136206c9d17)
)
(label "~{CE}" (at 91.44 105.41 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 88cd0d63-f1f0-4351-96ca-559209c7d27f)
)
(label "A8" (at 91.44 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8df0107c-7b87-4dfc-8a20-3e53533d0903)
)
(label "A0" (at 161.29 62.23 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 91fed377-e6e4-451b-80ff-76dce729f3b2)
)
(label "A5" (at 91.44 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 940d1cd7-18d0-4fd9-9967-b4656d5f134b)
)
(label "A10" (at 161.29 87.63 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 95d9f21c-cfc4-4d47-bb79-b9a9cabcba64)
)
(label "ALE{slash}~{CE}" (at 134.62 129.54 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 960220c2-b2cc-4482-95f5-18fadee504c5)
)
(label "A9" (at 161.29 85.09 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 99e8eb87-d02f-4fab-ab8c-e31d36532561)
)
(label "A12" (at 91.44 92.71 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9dc55200-62c6-49bc-9263-ccea8c15429e)
)
(label "A13" (at 91.44 95.25 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9ffc8cdf-d2d7-4a95-9dde-6e19b1e7c1af)
)
(label "A7" (at 161.29 80.01 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a4640daf-10ac-40bd-ad3e-48634761a47d)
)
(label "A11" (at 161.29 90.17 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a70cb614-ef8b-4bf3-81b8-e570f58c72d6)
)
(label "D1" (at 181.61 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a717b3d1-5c02-4af2-82ef-f40e25a6723d)
)
(label "D6" (at 111.76 77.47 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b051fa23-07cf-45ff-a6b1-797dd9db78f6)
)
(label "D7" (at 181.61 80.01 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b1d33fbe-ec25-4739-b717-9332ffe4569b)
)
(label "A6" (at 161.29 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid be2b9f48-bb83-400c-8213-8483c9763e62)
)
(label "A0" (at 91.44 62.23 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c817225e-702f-4299-8099-6ec1227f5fa2)
)
(label "A6" (at 91.44 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ce0a1ce0-a669-49e2-8368-e8df6411dec9)
)
(label "D4" (at 181.61 72.39 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d700e9ad-17c0-4a43-8b1e-8bd033224588)
)
(label "D4" (at 111.76 72.39 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid da03654b-b8ad-4587-90f8-2b2be72c8bce)
)
(label "D7" (at 111.76 80.01 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid defd8c0d-872b-4c27-b0f8-53e4f8b38f4d)
)
(label "A2" (at 91.44 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e0c631b2-2bb3-46cd-8f53-7d45f64b5349)
)
(label "~{CE}" (at 144.78 137.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e62cda0d-bae4-4f56-8ff7-38083c5a1f22)
)
(label "A7" (at 91.44 80.01 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e6de5725-b7c6-4bd1-af80-3a7506f82128)
)
(label "A4" (at 91.44 72.39 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e96907ca-7481-482a-9571-84d2c8a03b60)
)
(label "A3" (at 161.29 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ecf7c219-5cb9-4536-897d-65cc82c1d039)
)
(label "~{OE}" (at 91.44 107.95 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ed66f8c8-bdb5-4fdd-9fc7-b4c6288789fe)
)
(label "A14" (at 161.29 97.79 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f29ff13d-fcef-4614-ad4e-8e083b127c00)
)
(label "D0" (at 111.76 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fe7d82c0-ca53-4f0d-82d0-5a8b480d6950)
)
(symbol (lib_id "000_LOCAL:27C256") (at 101.6 85.09 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5b130a)
(property "Reference" "J1" (id 0) (at 101.6 49.784 0))
(property "Value" "27C256 pinout to programmer" (id 1) (at 101.6 51.816 0))
(property "Footprint" "000_LOCAL:2x28_0.3_0.1_pins" (id 2) (at 101.6 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0006.pdf" (id 3) (at 101.6 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f667b4c-1670-4e90-af84-a8a0ccf5fd2c))
(pin "10" (uuid 7e6c1da4-8746-4485-9947-bcd416d2965f))
(pin "11" (uuid 24e14e4c-4a80-4904-8732-25e34d954364))
(pin "12" (uuid 42160856-2e13-4212-84b9-00299d4e3770))
(pin "13" (uuid 4a9e31e0-054b-481b-91b8-971466ce11cb))
(pin "14" (uuid 2e1fc603-6bdd-4a44-9176-8330f4146fb8))
(pin "15" (uuid 0a5018b9-5fb2-4839-b9a0-cd7d1d681257))
(pin "16" (uuid ad5174aa-56e6-489b-8b09-99e69797ce43))
(pin "17" (uuid 59ba7733-ab4e-48bc-9a76-559d78ca1e6c))
(pin "18" (uuid d1a49ebb-1f20-4266-b3a5-f7f45b44bf9f))
(pin "19" (uuid 190103e1-e623-410b-8c72-20e12133970a))
(pin "2" (uuid fc9b92e6-b607-41a5-8972-71a04b7d8115))
(pin "20" (uuid dc1785ea-3f13-4328-be35-d19f908eccb5))
(pin "21" (uuid e377bc09-0c82-4b42-bdeb-f582c6684330))
(pin "22" (uuid deb465d4-241e-46bc-9091-f043e7ca7147))
(pin "23" (uuid 6e3cf51a-b57a-45b2-bf6c-697f1b6effdc))
(pin "24" (uuid b6e55536-86df-4fc4-bfd2-9bc1f0bc877a))
(pin "25" (uuid cbdd9028-30a9-4e62-8594-bd16be31c6cb))
(pin "26" (uuid 66dd5cce-3d0b-4ce8-b0bf-ef0550a5f564))
(pin "27" (uuid 3ac43012-be69-463f-971f-4c72e5516fe0))
(pin "28" (uuid affff326-7556-4f10-a044-3d76661db74c))
(pin "3" (uuid 45043fb3-c5fa-4ff4-89e6-375725b857f2))
(pin "4" (uuid cab9c62e-0803-4f12-83fb-4319eeac8399))
(pin "5" (uuid fb07da21-74b1-404c-b12b-11f206da92db))
(pin "6" (uuid ef51f245-a86e-4db7-a300-36898c126963))
(pin "7" (uuid 7e2e7fd9-075d-4707-996f-168913805e05))
(pin "8" (uuid c7e5729c-f54b-47c6-9228-43f3f76d59ae))
(pin "9" (uuid d0712c25-b724-421b-a38d-453f4bd93112))
)
(symbol (lib_id "000_LOCAL:Tandy_100_102_200_option_rom") (at 171.45 85.09 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5c209e)
(property "Reference" "J2" (id 0) (at 171.45 47.752 0))
(property "Value" "Model 100/102/200 Option ROM Socket" (id 1) (at 171.45 50.038 0))
(property "Footprint" "000_LOCAL:Molex_78805" (id 2) (at 171.45 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf" (id 3) (at 171.45 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 647ae793-715a-40a2-86e5-001ac4edd004))
(pin "10" (uuid b3841c98-5711-43f7-a52d-ee1d74f9994c))
(pin "11" (uuid c8b3187b-02d5-4b8f-a9bb-8d348589f6d0))
(pin "12" (uuid dd953d97-eee8-49b3-98d0-1e0c541abed0))
(pin "13" (uuid e9939738-bb80-4d42-bd57-07e7eb9197c7))
(pin "14" (uuid 9c4ac640-9459-4162-8cf4-6d244ba5bf38))
(pin "15" (uuid b326de89-f464-435e-9d2f-9a33d03f0465))
(pin "16" (uuid 1bcdb8a3-5cff-4215-88bb-4bd4d18042aa))
(pin "17" (uuid 15140932-fcfd-40e2-95db-1b24cfcb4ee4))
(pin "18" (uuid 2c92e17e-9cf1-44c2-b442-62d42272758d))
(pin "19" (uuid 14bc6861-86ed-4aca-b8c6-e8aa15f33a74))
(pin "2" (uuid 8377d0f8-d0f5-4a0d-9042-dc43f75f9157))
(pin "20" (uuid c414c880-9599-4e3f-a08e-1d9eae0fe2b5))
(pin "21" (uuid d228cae3-0522-41fc-9473-1ca7504cacc3))
(pin "22" (uuid 8e8df7df-c783-4b90-8384-f5350a6ad558))
(pin "23" (uuid 0943074e-624d-4056-9f29-8ae73b9ae416))
(pin "24" (uuid aa2af6ea-8d91-4a0e-bbe5-5582cb83c606))
(pin "25" (uuid 0f2e3e9a-8f8d-481d-9b02-11acd89b7419))
(pin "26" (uuid 3d2f9b13-5678-46a2-8e85-e7c070e5aa1b))
(pin "27" (uuid a7f0eef1-82c0-4753-8b52-924a5022713e))
(pin "28" (uuid 3933ee20-8727-4e09-8bac-169b1ad04b59))
(pin "3" (uuid e777182e-b77c-4154-a90c-805751419173))
(pin "4" (uuid 532539bb-94d1-44e5-926c-eec731d544f6))
(pin "5" (uuid 6718b1f2-91ce-44ae-a051-8fe4a7b19430))
(pin "6" (uuid 16071e58-7b66-417c-8dbd-272f89cf3fcc))
(pin "7" (uuid 6dd8df4d-b623-406e-8320-3a0697ff6d3b))
(pin "8" (uuid 16daf29b-bc16-4495-9dd2-1db5c6b6db2c))
(pin "9" (uuid 939d2071-641e-4873-b253-0616660b75ea))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Bridged") (at 139.7 137.16 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006090dbee)
(property "Reference" "JP4" (id 0) (at 139.7 135.382 0))
(property "Value" "~{CE}" (id 1) (at 139.7 134.366 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical_shorted" (id 2) (at 139.7 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dff4c256-cd52-4b7a-8370-a10441a5ad25))
(pin "2" (uuid f3f20a5f-7f51-496b-854d-9d83ba87fdf8))
)
(symbol (lib_id "power:GND") (at 101.6 113.03 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000609e1bed)
(property "Reference" "#PWR0101" (id 0) (at 101.6 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 102.362 118.364 0))
(property "Footprint" "" (id 2) (at 101.6 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 101.6 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3040465-0c4f-4833-ac8f-f84847ddf536))
)
(symbol (lib_id "power:GND") (at 171.45 113.03 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000609e226c)
(property "Reference" "#PWR0102" (id 0) (at 171.45 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 174.498 115.316 0))
(property "Footprint" "" (id 2) (at 171.45 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 171.45 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c8f1735-cb15-4fe9-907a-b210b9ca6e8c))
)
(symbol (lib_id "power:GND") (at 144.78 121.92 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000609e361c)
(property "Reference" "#PWR0103" (id 0) (at 151.13 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 147.574 121.92 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4077e7db-f8a6-4d32-b873-61bc97b79f05))
)
(symbol (lib_id "power:VCC") (at 144.78 132.08 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000609f5f5c)
(property "Reference" "#PWR0104" (id 0) (at 140.97 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 147.574 131.826 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 144.78 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ba0bdaff-4c0e-4300-ba10-7e355d6789db))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Open") (at 139.7 127 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000609fda51)
(property "Reference" "JP2" (id 0) (at 139.7 125.222 0))
(property "Value" "VPP" (id 1) (at 139.7 124.206 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 139.7 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bce124f2-7204-49ed-a380-f68f148c218e))
(pin "2" (uuid 3f54e8d8-39dd-4b8f-9abe-17ae884caf7f))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Open") (at 139.7 132.08 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060a022b6)
(property "Reference" "JP3" (id 0) (at 139.7 130.302 0))
(property "Value" "VCC" (id 1) (at 139.7 129.286 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 139.7 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 632c4f6d-1ad7-4517-832d-76b90324f5fa))
(pin "2" (uuid 78f9545a-97ca-4660-8f3c-8a51b812e352))
)
(symbol (lib_id "power:VCC") (at 171.45 57.15 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060a28b1f)
(property "Reference" "#PWR0105" (id 0) (at 171.45 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 172.212 54.864 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 171.45 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 171.45 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0c3d6693-03c7-4ca9-b1c9-cf7a617529a1))
)
(symbol (lib_id "power:VCC") (at 101.6 57.15 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060a2c3a9)
(property "Reference" "#PWR0106" (id 0) (at 101.6 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 102.362 55.118 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 101.6 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 101.6 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 97ec4396-fd97-4d47-a8ef-d5073117306d))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Open") (at 139.7 121.92 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060adfbd6)
(property "Reference" "JP1" (id 0) (at 139.7 120.142 0))
(property "Value" "GND" (id 1) (at 139.7 119.126 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "000_LOCAL:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 139.7 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5bfbd2c3-a132-4ee7-b725-67fff5e409e3))
(pin "2" (uuid 62ecd062-5082-49ff-9523-492522cec309))
)
(sheet_instances
(path "/" (page "1"))
)
(symbol_instances
(path "/00000000-0000-0000-0000-0000609e1bed"
(reference "#PWR0101") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000609e226c"
(reference "#PWR0102") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000609e361c"
(reference "#PWR0103") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-0000609f5f5c"
(reference "#PWR0104") (unit 1) (value "VCC") (footprint "")
)
(path "/00000000-0000-0000-0000-000060a28b1f"
(reference "#PWR0105") (unit 1) (value "VCC") (footprint "")
)
(path "/00000000-0000-0000-0000-000060a2c3a9"
(reference "#PWR0106") (unit 1) (value "VCC") (footprint "")
)