-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFlexROM_100.kicad_sch
1044 lines (1022 loc) · 40.7 KB
/
FlexROM_100.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 bc27745c-47bc-4283-8f47-853251927362)
(paper "USLetter")
(title_block
(title "28C256 SOIC to LH535618 DIP")
(date "2023-02-23")
(rev "004")
(company "Brian K. White - b.kenyon.w@gmail.com")
(comment 1 "TRS-80 Model 100 system rom M12")
(comment 2 "Support REX main rom feature")
)
(lib_symbols
(symbol "000_LOCAL:28C256" (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" "28C256" (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* SOIC*7.5x17.9mm*P1.27mm*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "28C256_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 input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (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 -22.86 0) (length 2.54)
(name "~{CS}" (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 -20.32 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 -17.78 0) (length 2.54)
(name "~{WE}" (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: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 "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:LH535618" (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" "LH535618" (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 "LH535618_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 "AD0" (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 "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 "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 -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" (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 "AD7" (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 "AD6" (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 "AD5" (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 "AD4" (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 "AD3" (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 "AD2" (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 "AD1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL: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))))
)
)
)
)
(wire (pts (xy 127 130.175) (xy 120.65 130.175))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12eb0910-5b10-4e55-ab60-728234876d62)
)
(wire (pts (xy 127 149.86) (xy 120.65 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72e97d59-3f5e-486e-90c2-f7b7d07a3e2c)
)
(text "RUN: open\nPROGRAM: close" (at 139.7 151.13 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 03a88272-ff6a-486d-9a81-42aef82fd8aa)
)
(text "JP1 - Main ROM Source\nBoot from internal: close\nBoot from REX: open, connect ~{CS_BUS} to REX TP1\n"
(at 139.7 132.08 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 05d4ad76-46d0-426a-86a6-a0002960ae45)
)
(text "Pin 23 ALE is a 2nd ~{CE} on the original non-standard pinout system ROM.\n(disable the chip when ALE is high)\n\nALE should be left not-connected during normal read-only operation with a standard part like 28C256.\nThe normal ~{OE} and ~{CS} signals suffice to enable & disable the part at the right times.\n\nFor programming, JP2 is closed and the programming adapter routes the ALE pin to ~{WE}."
(at 19.304 195.072 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 92eff014-0419-4901-a6af-aa6489c6c591)
)
(label "D4" (at 179.705 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 01a681bc-a840-4a7c-82f8-5f472ddc2bd3)
)
(label "~{CS_BUS}" (at 110.49 130.175 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 01abc531-7f56-43d1-841d-2bf378b2ed06)
)
(label "~{OE}" (at 159.385 97.79 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 036e776d-91bb-42b0-942c-938e9805862b)
)
(label "D1" (at 118.11 57.15 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0bc14a42-6ab2-4e4a-9cdb-a49b3b42a8fd)
)
(label "~{WE}" (at 159.385 95.25 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0e0c6756-777a-4075-8d56-97d1c9b72189)
)
(label "D6" (at 179.705 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 16d9e7dd-fd01-4511-ad7b-03cc98c1c37c)
)
(label "A11" (at 97.79 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1f29ac1e-e805-45ac-8214-85a3bb07271e)
)
(label "D7" (at 118.11 72.39 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2ef466cf-73ca-4e58-ac08-48c770274cb5)
)
(label "A1" (at 97.79 57.15 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2f777811-163f-41b6-ae0a-2f01acc27787)
)
(label "A9" (at 97.79 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 32fe297d-5a50-451b-99b0-ee2171f0d564)
)
(label "ALE" (at 97.79 95.25 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 365138e3-2b2d-43eb-b8c0-d99e5d221200)
)
(label "D2" (at 179.705 59.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 39875dce-465d-44db-b858-1a920e8b64d1)
)
(label "A8" (at 97.79 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3bc93813-3c3d-4910-a2e5-74ca72021985)
)
(label "A14" (at 159.385 90.17 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3be2237b-9207-4db4-bc7a-114cbda337a6)
)
(label "~{WE}" (at 120.65 149.86 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3e17561c-a68b-4e10-a39b-275fa42bb692)
)
(label "A3" (at 159.385 62.23 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 40dfc01e-bb6b-4b77-b3bf-ba6931f9bcf8)
)
(label "A2" (at 97.79 59.69 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4a82fecb-9232-4af1-9c1c-f587a82fb8dc)
)
(label "A9" (at 159.385 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 523dc7d7-f86c-4dec-8a25-ee3e18f516fa)
)
(label "A0" (at 97.79 54.61 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 52fdc0e4-e3c8-4cf2-8f6b-ab62f2b8e19b)
)
(label "A13" (at 97.79 87.63 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 561b715e-79de-4f7f-9617-e5a9ad99b377)
)
(label "A6" (at 97.79 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 584cc9dd-a65d-4d84-899b-475e9d05b13d)
)
(label "A10" (at 97.79 80.01 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5e0b90e2-c277-497f-9ec1-969feadba20e)
)
(label "ALE" (at 110.49 149.86 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6365a7ff-6120-44b4-afe4-daafc1d7c36b)
)
(label "D1" (at 179.705 57.15 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6536a283-bf4c-4c80-a05d-b89f4a889d81)
)
(label "~{CS_IC}" (at 159.385 100.33 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6d0569a6-45ed-464b-b867-8e109d7c2854)
)
(label "D0" (at 179.705 54.61 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6f501039-7dc0-4a0d-8c53-8708f5d5e183)
)
(label "D2" (at 118.11 59.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 76587883-c9da-46df-813f-775c4fa4a9dc)
)
(label "~{CS_IC}" (at 120.65 130.175 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7ad1d43d-6c21-4263-96d2-9712b4063e42)
)
(label "D5" (at 118.11 67.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 86049e83-9e30-42e4-907d-bbd159653e91)
)
(label "A12" (at 159.385 85.09 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 87e8f1d5-c321-4a95-9547-dca715d17838)
)
(label "A2" (at 159.385 59.69 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8a49605a-2520-4e64-b250-d11bc0ddfdd5)
)
(label "A10" (at 159.385 80.01 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8be96c34-365c-46e3-8c9f-fd8199c6da1b)
)
(label "D0" (at 118.11 54.61 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9072c701-b808-48c5-8a35-cc6205462984)
)
(label "A8" (at 159.385 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 945aa675-d5bb-457d-a488-b8ce6e5bc59d)
)
(label "D7" (at 179.705 72.39 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9a401905-b671-4548-8670-b51df47368d1)
)
(label "A4" (at 97.79 64.77 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9cf81977-0c89-49ab-bb60-95778f0d68ce)
)
(label "D3" (at 118.11 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9e722a59-c4b9-4377-ad60-1d4f645c058f)
)
(label "A11" (at 159.385 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a6d02d23-36d2-42ca-ae5f-399b1f7c1817)
)
(label "A6" (at 159.385 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a75fc27e-4290-47da-a41e-67bf1bc9e7aa)
)
(label "A5" (at 159.385 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c294d73e-286e-467e-b56b-ce69c51e332c)
)
(label "A12" (at 97.79 85.09 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c6850221-a5e5-4ef1-9d41-fdde9423fed8)
)
(label "D4" (at 118.11 64.77 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c71b1151-0405-4ab6-98f3-764d2bcc6969)
)
(label "D6" (at 118.11 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cb53f141-df60-41e2-9b9d-eb602b021dbb)
)
(label "A7" (at 159.385 72.39 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cc3f59de-d5ee-4c0b-a854-3bf80087f329)
)
(label "A14" (at 97.79 90.17 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cfbf1c50-4f34-4a94-ae71-da4ed4709520)
)
(label "D5" (at 179.705 67.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid deeadb8e-c67c-4d4d-88e0-0a2f182285d3)
)
(label "A1" (at 159.385 57.15 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid dfaa15a0-475b-48e4-b4c5-1d9615096b26)
)
(label "~{CS_BUS}" (at 97.79 100.33 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e49126a3-f089-453c-aed4-759991ecbd8e)
)
(label "~{OE}" (at 97.79 97.79 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid eb302321-efc8-45a8-be33-7d52807d600d)
)
(label "A0" (at 159.385 54.61 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ed6c7666-cb59-4a02-9f38-6df4da0d64a1)
)
(label "A4" (at 159.385 64.77 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f05eca45-5fb3-4530-89dc-c6b019a339e2)
)
(label "A13" (at 159.385 87.63 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f19d775a-587d-45a3-9a79-7a639d6d39cf)
)
(label "A7" (at 97.79 72.39 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f8f18e4d-7740-467e-aac6-7fb502b9fc11)
)
(label "A3" (at 97.79 62.23 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f9a582c2-d5d3-4448-a1ba-371b2f612603)
)
(label "D3" (at 179.705 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f9db5ae5-1f14-4ddb-ab71-2842e84add8e)
)
(label "A5" (at 97.79 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid fcfb6699-99ce-45dc-a556-5abfba5f20e3)
)
(symbol (lib_id "000_LOCAL:28C256") (at 169.545 77.47 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5b130a)
(property "Reference" "U1" (id 0) (at 163.195 49.53 0))
(property "Value" "28C256" (id 1) (at 175.26 49.53 0))
(property "Footprint" "000_LOCAL:SOIC28W" (id 2) (at 169.545 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0006.pdf" (id 3) (at 169.545 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d2bf7272-f223-4bf5-b97e-6224bc041fd3))
(pin "10" (uuid e11d82c7-4604-4e9c-b644-3d105b21c679))
(pin "11" (uuid 4e786c6c-99c9-49bd-b76a-3efca50d8f4d))
(pin "12" (uuid 70542093-9d0b-452e-a8f5-b1fb75b8b826))
(pin "13" (uuid e9740d64-f39e-4e9f-abfc-ef90fc96c675))
(pin "14" (uuid 32fe06dd-38ff-4db9-8b52-0853039aa433))
(pin "15" (uuid b83f35f8-4721-4f7a-bda4-f9b4701c8e5b))
(pin "16" (uuid 0d582323-52bc-4b50-94cd-b10619e64569))
(pin "17" (uuid af1d1acb-6058-49a5-bcd4-739ced6e504a))
(pin "18" (uuid 086e12bc-48e3-429e-adaa-f557acba26b3))
(pin "19" (uuid 97899c40-a9d3-4e30-b916-4a33896e3864))
(pin "2" (uuid cb07e62f-48e3-459f-8099-68762e917b29))
(pin "20" (uuid c2bf9a7e-3eb0-47a5-a6bd-90f22f54470b))
(pin "21" (uuid 0095346f-f72b-428b-b5ea-ec33a3864a18))
(pin "22" (uuid 338bcbfd-0ee4-4f95-9765-65878b36cb34))
(pin "23" (uuid 34e93007-f7bf-40b7-aaf2-2d672be98d10))
(pin "24" (uuid 4f72f087-94b6-4f19-b8d5-fa071c961cc8))
(pin "25" (uuid 0f534c28-420a-463c-aca2-3c3d594d4cf9))
(pin "26" (uuid 087a820f-d4c4-4567-8355-1c22beda4649))
(pin "27" (uuid 3f038d00-04e9-4022-8660-3d4fa6f55236))
(pin "28" (uuid ae188520-38b3-4599-9d17-b687ee97134a))
(pin "3" (uuid 559c6dcb-7532-4882-a76c-ba571219c7f8))
(pin "4" (uuid 3f3242c1-caf5-4058-b96f-8aa2a8f6ef90))
(pin "5" (uuid 61f59736-d8ff-4591-83d7-010dc1bf416d))
(pin "6" (uuid 790b49e6-00af-4aeb-944f-7ef2b5a13e31))
(pin "7" (uuid d5bfa254-66f4-4aa5-81a8-ad311ed7065b))
(pin "8" (uuid 37f46d3c-521d-4fe1-a9e4-0b9163b29787))
(pin "9" (uuid 8c46f185-3195-4579-a7fe-98a72321f6de))
)
(symbol (lib_id "000_LOCAL:LH535618") (at 107.95 77.47 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5c209e)
(property "Reference" "J1" (id 0) (at 101.6 49.53 0))
(property "Value" "LH535618 DIP LEGS" (id 1) (at 119.38 49.53 0))
(property "Footprint" "000_LOCAL:DIP28_0.6_pcb" (id 2) (at 107.95 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf" (id 3) (at 107.95 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 23fc64a9-af3e-4bc3-a667-07d48b9c9c38))
(pin "10" (uuid b4ed7385-8e76-4150-bc76-9f1fbaf8d951))
(pin "11" (uuid 83f4e428-b924-4480-bb32-75e920bde34e))
(pin "12" (uuid 002aa1b2-d52a-499e-b74e-ca69a030525b))
(pin "13" (uuid aa3c9816-aa80-46d5-af44-66e664ac6ad7))
(pin "14" (uuid 34451284-fe25-4d12-8cb0-2ebbbdf309a5))
(pin "15" (uuid 85158362-e75b-4a26-8f9a-49d76ce2db4f))
(pin "16" (uuid b5b5dffd-ad28-49c6-86ce-72967e784846))
(pin "17" (uuid 6204e6d8-ce18-44ed-9dd7-9a846bdda970))
(pin "18" (uuid 72521dd3-af42-4dc3-a032-cde0085b1abf))
(pin "19" (uuid f88cc02b-ba7f-44ce-aafa-a28d7b8fe1ba))
(pin "2" (uuid c22aaad0-b757-42c6-9512-3305a1a41151))
(pin "20" (uuid 54931653-cb36-426f-bfa1-e2671ff66e18))
(pin "21" (uuid 97c1661a-08af-493e-8b10-50a0f0fc9958))
(pin "22" (uuid 7d8063fb-2f55-4449-bccf-2972e300ad36))
(pin "23" (uuid 27943b06-9dff-4ffd-a309-809cae86aae1))
(pin "24" (uuid 6509d737-4821-4e08-b472-72b0017bd4b6))
(pin "25" (uuid 6595cc76-3378-47f8-984b-e0b142de3b46))
(pin "26" (uuid 5eb0e352-87cc-40fd-87cf-7cd8a23d9fd2))
(pin "27" (uuid 5362139b-0a32-46ec-99d9-548474067b05))
(pin "28" (uuid 27fa80d8-bbdc-4cba-8934-0849dc24a878))
(pin "3" (uuid b52fd5b9-c9b0-4a49-b08d-89ee625ae0d2))
(pin "4" (uuid a49e1ccd-8744-4b41-940a-8ef93d418618))
(pin "5" (uuid 5e5a512e-309c-4a71-b746-0937cd059147))
(pin "6" (uuid 0556314e-da84-41f9-bc1f-551a90099c09))
(pin "7" (uuid 182073e9-53e1-4cfc-8476-79ce8172f0bd))
(pin "8" (uuid f402525d-05bc-40e3-a4ef-1cffd36424b0))
(pin "9" (uuid 4d55527e-6657-469e-8f23-1792091b5f8a))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Bridged") (at 115.57 130.175 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e68b8a2)
(property "Reference" "JP1" (id 0) (at 115.57 128.143 0))
(property "Value" "~{CS} breakout" (id 1) (at 115.57 126.111 0))
(property "Footprint" "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (id 2) (at 115.57 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 115.57 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 884436e4-f1df-4fed-b8ca-00aa04c0026d))
(pin "2" (uuid 953c8feb-9783-473a-bda8-d554bc74d182))
)
(symbol (lib_id "000_LOCAL:R_US") (at 130.81 130.175 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e68c7f8)
(property "Reference" "R2" (id 0) (at 130.81 127.635 90))
(property "Value" "100K" (id 1) (at 130.81 132.715 90))
(property "Footprint" "000_LOCAL:R_0805" (id 2) (at 130.81 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 130.81 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f9fb9865-92b0-42f8-b773-28588198c3c7))
(pin "2" (uuid e666c6e1-b47b-43ab-9912-96cc27edb738))
)
(symbol (lib_id "000_LOCAL:Jumper_2_Bridged") (at 115.57 149.86 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fbfb30e)
(property "Reference" "JP2" (id 0) (at 115.57 147.828 0))
(property "Value" "PROGRAM/RUN" (id 1) (at 115.57 145.796 0))
(property "Footprint" "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (id 2) (at 115.57 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 115.57 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8e5697f-d4bf-4428-8995-5fbf34c8e545))
(pin "2" (uuid e1a927af-8d95-4530-a93d-cf71bd3b1ea2))
)
(symbol (lib_id "000_LOCAL:R_US") (at 130.81 149.86 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fbfb319)
(property "Reference" "R1" (id 0) (at 130.81 147.32 90))
(property "Value" "100K" (id 1) (at 130.81 152.4 90))
(property "Footprint" "000_LOCAL:R_0805" (id 2) (at 130.81 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 130.81 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 292f4efd-614d-418f-9a59-6ed62986f9c9))
(pin "2" (uuid 597657d0-57ec-491c-901a-9e86d3eae920))
)
(symbol (lib_id "000_LOCAL:VCC") (at 134.62 149.86 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 169f6c8d-2725-4caf-8a4d-f075070c6e75)
(property "Reference" "#PWR0106" (id 0) (at 134.62 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 134.62 146.05 0))
(property "Footprint" "" (id 2) (at 134.62 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 149.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5a35766-dea4-4430-b213-ef3dd3c4b10f))
)
(symbol (lib_id "000_LOCAL:GND") (at 107.95 105.41 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 21e396e4-7750-4c9a-9f79-6252872754a9)
(property "Reference" "#PWR0101" (id 0) (at 107.95 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 107.95 109.22 0))
(property "Footprint" "" (id 2) (at 107.95 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 107.95 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 585075cb-2991-4d7a-a7d9-bc93e1683279))
)
(symbol (lib_id "000_LOCAL:VCC") (at 169.545 49.53 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4d793a5c-444a-4460-8351-79d446b4a9b0)
(property "Reference" "#PWR0103" (id 0) (at 169.545 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 169.545 45.72 0))
(property "Footprint" "" (id 2) (at 169.545 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 169.545 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 777dd175-1bfd-481d-9121-9ed055b61cc8))
)
(symbol (lib_id "000_LOCAL:VCC") (at 134.62 130.175 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 998724c5-dffd-4d90-b829-fb55454c5e30)
(property "Reference" "#PWR0105" (id 0) (at 134.62 133.985 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 134.62 126.365 0))
(property "Footprint" "" (id 2) (at 134.62 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 130.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0204d1fb-7b63-4ce4-a0b5-d353e15e70e1))
)
(symbol (lib_id "000_LOCAL:VCC") (at 107.95 49.53 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9b1134a8-6d29-4af1-82ce-db15d50bc71b)
(property "Reference" "#PWR0102" (id 0) (at 107.95 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 107.95 45.72 0))
(property "Footprint" "" (id 2) (at 107.95 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 107.95 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a19be840-8312-4e91-9e8c-4a26dd295106))
)
(symbol (lib_id "000_LOCAL:GND") (at 169.545 105.41 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid b429efd7-4e75-4122-9733-c03d0e958dda)
(property "Reference" "#PWR0104" (id 0) (at 169.545 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 169.545 109.22 0))
(property "Footprint" "" (id 2) (at 169.545 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 169.545 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c6bf150b-a82e-46d1-96e6-5d695ec79628))
)