-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPU8085.net
More file actions
1087 lines (1087 loc) · 41.6 KB
/
Copy pathCPU8085.net
File metadata and controls
1087 lines (1087 loc) · 41.6 KB
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
(export (version D)
(design
(source C:\Users\hotkey\SparkleShare\documents\electro\KiCad\CPU8085\CPU8085.sch)
(date "2018-09-02 22:42:26")
(tool "Eeschema (5.0.0)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source CPU8085.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /CPU/) (tstamps /5B8BFEAE/)
(title_block
(title)
(company)
(rev)
(date)
(source CPU.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Memory/) (tstamps /5B8BFECF/)
(title_block
(title)
(company)
(rev)
(date)
(source Memory.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /UART/) (tstamps /5B955671/)
(title_block
(title)
(company)
(rev)
(date)
(source UART.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /PIT/) (tstamps /5B98C06B/)
(title_block
(title)
(company)
(rev)
(date)
(source PIT.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /IODECODE/) (tstamps /5B96BA20/)
(title_block
(title)
(company)
(rev)
(date)
(source IODECODE.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MK1)
(value Mounting_Hole_PAD)
(footprint Mounting_Holes:MountingHole_2.7mm)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A6CFED2))
(comp (ref MK2)
(value Mounting_Hole_PAD)
(footprint Mounting_Holes:MountingHole_2.7mm)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A6CFF98))
(comp (ref MK4)
(value Mounting_Hole_PAD)
(footprint Mounting_Holes:MountingHole_2.7mm)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A6D003F))
(comp (ref J1)
(value POWER)
(footprint Connector_Molex:Molex_SPOX_5267-04A_1x04_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8BFF37))
(comp (ref MK3)
(value Mounting_Hole_PAD)
(footprint Mounting_Holes:MountingHole_2.7mm)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A6CFFFA))
(comp (ref U1)
(value 8085)
(footprint Package_DIP:DIP-40_W15.24mm)
(libsource (lib 8085) (part 8085) (description ""))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C0686))
(comp (ref R1)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C07F0))
(comp (ref R2)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C0915))
(comp (ref R3)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C094D))
(comp (ref R4)
(value 75K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C097C))
(comp (ref D1)
(value 1N4004)
(footprint Diode_THT:D_A-405_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_ALT) (description "Diode, alternativ symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C0E93))
(comp (ref R5)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C235B))
(comp (ref R7)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C25AD))
(comp (ref R6)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C2666))
(comp (ref R8)
(value 10K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor US symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C2722))
(comp (ref SW1)
(value RESET)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(libsource (lib Switch) (part SW_DIP_x01) (description "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C4B7C))
(comp (ref C1)
(value 1uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C4CF6))
(comp (ref X1)
(value 1.8432)
(footprint Oscillator:Oscillator_DIP-14)
(datasheet http://www.golledge.com/pdf/products/tcxos/gtxos14.pdf)
(libsource (lib Oscillator) (part TCXO-14) (description "Temperature Compensated Crystal Clock Oscillator, DIP14-style metal package"))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8C642F))
(comp (ref U4)
(value GLUE_LOGIC)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib 8085) (part GLUE_LOGIC) (description ""))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8CAEEC))
(comp (ref U2)
(value A_LOW)
(footprint Package_DIP:DIP-20_W7.62mm)
(libsource (lib 8085) (part ALATCH) (description ""))
(sheetpath (names /CPU/) (tstamps /5B8BFEAE/))
(tstamp 5B8E65EA))
(comp (ref U5)
(value 27C256)
(footprint Package_DIP:DIP-28_W15.24mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf)
(libsource (lib Memory_EPROM) (part 27C256) (description "OTP EPROM 256 KiBit"))
(sheetpath (names /Memory/) (tstamps /5B8BFECF/))
(tstamp 5B945467))
(comp (ref U6)
(value IS61C256AH)
(footprint Package_DIP:DIP-28_W7.62mm)
(libsource (lib 8085) (part IS61C256AH) (description ""))
(sheetpath (names /Memory/) (tstamps /5B8BFECF/))
(tstamp 5B949123))
(comp (ref U7)
(value 8250)
(footprint Package_DIP:DIP-40_W15.24mm)
(libsource (lib Interface_UART) (part 8250) (description "PC8250A, Universal Asynchronous Receiver/Transmitter, PDIP-40"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B9557FE))
(comp (ref U8)
(value MAX232)
(footprint Package_DIP:DIP-16_W7.62mm)
(datasheet http://www.ti.com/lit/ds/symlink/max232.pdf)
(libsource (lib Interface_UART) (part MAX232) (description "Dual RS232 driver/receiver, 5V supply, 120kb/s, 0C-70C"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B955886))
(comp (ref J2)
(value DB9_Female_MountingHoles)
(footprint Connector_Dsub:DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm)
(datasheet " ~")
(libsource (lib Connector) (part DB9_Female_MountingHoles) (description "9-pin female D-SUB connector, Mounting Hole"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B9009D3))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B909D17))
(comp (ref C4)
(value 0.1uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B90C3A4))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B919435))
(comp (ref C5)
(value 0.1uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /UART/) (tstamps /5B955671/))
(tstamp 5B9194F1))
(comp (ref U12)
(value 82C54)
(footprint Package_DIP:DIP-24_W15.24mm)
(datasheet http://download.intel.com/design/archives/periphrl/docs/23124406.pdf)
(libsource (lib Timer) (part 82C54) (description "CHMOS Programmable Interval Timer, PDIP-24"))
(sheetpath (names /PIT/) (tstamps /5B98C06B/))
(tstamp 5B98D78A))
(comp (ref U9)
(value 74LS138)
(footprint Package_DIP:DIP-16_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS138)
(libsource (lib 74xx) (part 74LS138) (description "Decoder 3 to 8 active low outputs"))
(sheetpath (names /IODECODE/) (tstamps /5B96BA20/))
(tstamp 5B96BCB6)))
(libparts
(libpart (lib "") (part Mechanical:Mounting_Hole_PAD)
(footprints
(fp Mounting?Hole*)
(fp Hole*))
(fields
(field (name Reference) MK)
(field (name Value) Mechanical:Mounting_Hole_PAD))
(pins
(pin (num 1) (name 1) (type input))))
(libpart (lib 74xx) (part 74LS138)
(description "Decoder 3 to 8 active low outputs")
(docs http://www.ti.com/lit/gpn/sn74LS138)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS138))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name E1) (type input))
(pin (num 5) (name E2) (type input))
(pin (num 6) (name E3) (type input))
(pin (num 7) (name O7) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name O6) (type output))
(pin (num 10) (name O5) (type output))
(pin (num 11) (name O4) (type output))
(pin (num 12) (name O3) (type output))
(pin (num 13) (name O2) (type output))
(pin (num 14) (name O1) (type output))
(pin (num 15) (name O0) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 8085) (part 8085)
(footprints
(fp IC_DIP40_600*))
(fields
(field (name Reference) U)
(field (name Value) 8085))
(pins
(pin (num 1) (name X1) (type input))
(pin (num 2) (name X2) (type input))
(pin (num 3) (name RES_OUT) (type output))
(pin (num 4) (name SOD) (type output))
(pin (num 5) (name SID) (type input))
(pin (num 6) (name TRAP) (type input))
(pin (num 7) (name RST7_5) (type input))
(pin (num 8) (name RST6_5) (type input))
(pin (num 9) (name RST5_5) (type input))
(pin (num 10) (name INTR) (type input))
(pin (num 11) (name ~INTA) (type output))
(pin (num 12) (name AD0) (type 3state))
(pin (num 13) (name AD1) (type 3state))
(pin (num 14) (name AD2) (type 3state))
(pin (num 15) (name AD3) (type 3state))
(pin (num 16) (name AD4) (type 3state))
(pin (num 17) (name AD5) (type 3state))
(pin (num 18) (name AD6) (type 3state))
(pin (num 19) (name AD7) (type 3state))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name A8) (type 3state))
(pin (num 22) (name A9) (type 3state))
(pin (num 23) (name A10) (type 3state))
(pin (num 24) (name A11) (type 3state))
(pin (num 25) (name A12) (type 3state))
(pin (num 26) (name A13) (type 3state))
(pin (num 27) (name A14) (type 3state))
(pin (num 28) (name A15) (type 3state))
(pin (num 29) (name S0) (type output))
(pin (num 30) (name ALE) (type output))
(pin (num 31) (name ~WR) (type output))
(pin (num 32) (name ~RD) (type output))
(pin (num 33) (name S1) (type output))
(pin (num 34) (name IO/~M) (type output))
(pin (num 35) (name READY) (type input))
(pin (num 36) (name ~RES_IN) (type input))
(pin (num 37) (name CLK) (type output))
(pin (num 38) (name HLDA) (type output))
(pin (num 39) (name HOLD) (type input))
(pin (num 40) (name VCC) (type power_in))))
(libpart (lib 8085) (part ALATCH)
(fields
(field (name Reference) U)
(field (name Value) ALATCH))
(pins
(pin (num 1) (name CLK) (type input))
(pin (num 2) (name I0) (type input))
(pin (num 3) (name I1) (type input))
(pin (num 4) (name I2) (type input))
(pin (num 5) (name I3) (type input))
(pin (num 6) (name I4) (type input))
(pin (num 7) (name I5) (type input))
(pin (num 8) (name I6) (type input))
(pin (num 9) (name I7) (type input))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name OE) (type input))
(pin (num 12) (name Q7) (type 3state))
(pin (num 13) (name Q6) (type 3state))
(pin (num 14) (name Q5) (type 3state))
(pin (num 15) (name Q4) (type 3state))
(pin (num 16) (name Q3) (type 3state))
(pin (num 17) (name Q2) (type 3state))
(pin (num 18) (name Q1) (type 3state))
(pin (num 19) (name Q0) (type 3state))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib 8085) (part GLUE_LOGIC)
(fields
(field (name Reference) U)
(field (name Value) GLUE_LOGIC))
(pins
(pin (num 1) (name IO/~M) (type input))
(pin (num 2) (name RD) (type input))
(pin (num 3) (name WR) (type input))
(pin (num 4) (name ALE) (type input))
(pin (num 5) (name A15) (type input))
(pin (num 10) (name GND) (type power_in))
(pin (num 13) (name RAMCE) (type output))
(pin (num 14) (name ROMCE) (type output))
(pin (num 15) (name MEMW) (type output))
(pin (num 16) (name MEMR) (type output))
(pin (num 17) (name IOW) (type output))
(pin (num 18) (name IOR) (type output))
(pin (num 19) (name ALECLK) (type output))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib 8085) (part IS61C256AH)
(fields
(field (name Reference) U)
(field (name Value) IS61C256AH))
(pins
(pin (num 1) (name A14) (type input))
(pin (num 2) (name A12) (type input))
(pin (num 3) (name A7) (type input))
(pin (num 4) (name A6) (type input))
(pin (num 5) (name A5) (type input))
(pin (num 6) (name A4) (type input))
(pin (num 7) (name A3) (type input))
(pin (num 8) (name A2) (type input))
(pin (num 9) (name A1) (type input))
(pin (num 10) (name A0) (type input))
(pin (num 11) (name D0) (type BiDi))
(pin (num 12) (name D1) (type BiDi))
(pin (num 13) (name D2) (type BiDi))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name D3) (type BiDi))
(pin (num 16) (name D4) (type BiDi))
(pin (num 17) (name D5) (type BiDi))
(pin (num 18) (name D6) (type BiDi))
(pin (num 19) (name D7) (type BiDi))
(pin (num 20) (name CE) (type input))
(pin (num 21) (name A10) (type input))
(pin (num 22) (name OE) (type input))
(pin (num 23) (name A11) (type input))
(pin (num 24) (name A9) (type input))
(pin (num 25) (name A8) (type input))
(pin (num 26) (name A13) (type input))
(pin (num 27) (name WE) (type input))
(pin (num 28) (name VCC) (type power_in))))
(libpart (lib Connector) (part DB9_Female_MountingHoles)
(description "9-pin female D-SUB connector, Mounting Hole")
(docs " ~")
(footprints
(fp DSUB*Female*))
(fields
(field (name Reference) J)
(field (name Value) DB9_Female_MountingHoles))
(pins
(pin (num 0) (name PAD) (type passive))
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))
(pin (num 9) (name 9) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Device) (part CP1)
(description "Polarised capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_ALT)
(description "Diode, alternativ symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_ALT))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R_US)
(description "Resistor US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Interface_UART) (part 16450)
(aliases
(alias 8250))
(description "PC16450, Universal Asynchronous Receiver/Transmitter, PDIP-40")
(footprints
(fp DIP*W15.24mm*))
(fields
(field (name Reference) U)
(field (name Value) 16450)
(field (name Footprint) Package_DIP:DIP-40_W15.24mm))
(pins
(pin (num 1) (name D0) (type BiDi))
(pin (num 2) (name D1) (type BiDi))
(pin (num 3) (name D2) (type BiDi))
(pin (num 4) (name D3) (type BiDi))
(pin (num 5) (name D4) (type BiDi))
(pin (num 6) (name D5) (type BiDi))
(pin (num 7) (name D6) (type BiDi))
(pin (num 8) (name D7) (type BiDi))
(pin (num 9) (name RCLK) (type input))
(pin (num 10) (name SIN) (type input))
(pin (num 11) (name SOUT) (type output))
(pin (num 12) (name CS0) (type input))
(pin (num 13) (name CS1) (type input))
(pin (num 14) (name ~CS2~) (type input))
(pin (num 15) (name ~BAUDOUT~) (type output))
(pin (num 16) (name XIN) (type input))
(pin (num 17) (name XOUT) (type output))
(pin (num 18) (name ~WR~) (type input))
(pin (num 19) (name WR) (type input))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name ~RD~) (type input))
(pin (num 22) (name RD) (type input))
(pin (num 23) (name DDIS) (type output))
(pin (num 24) (name CSOUT) (type output))
(pin (num 25) (name ~ADS~) (type input))
(pin (num 26) (name A2) (type input))
(pin (num 27) (name A1) (type input))
(pin (num 28) (name A0) (type input))
(pin (num 30) (name INTR) (type output))
(pin (num 31) (name ~OUT2~) (type output))
(pin (num 32) (name ~RTS~) (type output))
(pin (num 33) (name ~DTR~) (type output))
(pin (num 34) (name ~OUT1~) (type output))
(pin (num 35) (name MR) (type input))
(pin (num 36) (name ~CTS~) (type input))
(pin (num 37) (name ~DSR~) (type input))
(pin (num 38) (name ~DCD~) (type input))
(pin (num 39) (name ~RI~) (type input))
(pin (num 40) (name VCC) (type power_in))))
(libpart (lib Interface_UART) (part MAX232)
(aliases
(alias MAX232I)
(alias MAX202)
(alias ADM232A)
(alias MAX3232)
(alias ICL3232))
(description "Dual RS232 driver/receiver, 5V supply, 120kb/s, 0C-70C")
(docs http://www.ti.com/lit/ds/symlink/max232.pdf)
(footprints
(fp SOIC*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TSSOP*4.4x5mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) MAX232))
(pins
(pin (num 1) (name C1+) (type passive))
(pin (num 2) (name VS+) (type power_out))
(pin (num 3) (name C1-) (type passive))
(pin (num 4) (name C2+) (type passive))
(pin (num 5) (name C2-) (type passive))
(pin (num 6) (name VS-) (type power_out))
(pin (num 7) (name T2OUT) (type output))
(pin (num 8) (name R2IN) (type input))
(pin (num 9) (name R2OUT) (type output))
(pin (num 10) (name T2IN) (type input))
(pin (num 11) (name T1IN) (type input))
(pin (num 12) (name R1OUT) (type output))
(pin (num 13) (name R1IN) (type input))
(pin (num 14) (name T1OUT) (type output))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib Memory_EPROM) (part 27C256)
(aliases
(alias 27256))
(description "OTP EPROM 256 KiBit")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf)
(footprints
(fp DIP*W15.24mm*))
(fields
(field (name Reference) U)
(field (name Value) 27C256)
(field (name Footprint) Package_DIP:DIP-28_W15.24mm))
(pins
(pin (num 1) (name VPP) (type input))
(pin (num 2) (name A12) (type input))
(pin (num 3) (name A7) (type input))
(pin (num 4) (name A6) (type input))
(pin (num 5) (name A5) (type input))
(pin (num 6) (name A4) (type input))
(pin (num 7) (name A3) (type input))
(pin (num 8) (name A2) (type input))
(pin (num 9) (name A1) (type input))
(pin (num 10) (name A0) (type input))
(pin (num 11) (name D0) (type 3state))
(pin (num 12) (name D1) (type 3state))
(pin (num 13) (name D2) (type 3state))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name D3) (type 3state))
(pin (num 16) (name D4) (type 3state))
(pin (num 17) (name D5) (type 3state))
(pin (num 18) (name D6) (type 3state))
(pin (num 19) (name D7) (type 3state))
(pin (num 20) (name ~CE) (type input))
(pin (num 21) (name A10) (type input))
(pin (num 22) (name ~OE) (type input))
(pin (num 23) (name A11) (type input))
(pin (num 24) (name A9) (type input))
(pin (num 25) (name A8) (type input))
(pin (num 26) (name A13) (type input))
(pin (num 27) (name A14) (type input))
(pin (num 28) (name VCC) (type power_in))))
(libpart (lib Oscillator) (part DGOF5S3)
(aliases
(alias ACO-xxxMHz)
(alias GTXO-S14T)
(alias TCXO-14))
(description "HCMOS Crystal Clock Oscillator, DIP14-style metal package")
(docs http://www.conwin.com/datasheets/cx/cx030.pdf)
(footprints
(fp Oscillator*DIP*14*))
(fields
(field (name Reference) X)
(field (name Value) DGOF5S3)
(field (name Footprint) Oscillator:Oscillator_DIP-14))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name OUT) (type output))
(pin (num 14) (name Vcc) (type power_in))))
(libpart (lib Switch) (part SW_DIP_x01)
(description "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol")
(footprints
(fp SW?DIP?x1*))
(fields
(field (name Reference) SW)
(field (name Value) SW_DIP_x01))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Timer) (part 82C54)
(aliases
(alias 8254)
(alias 8253))
(description "CHMOS Programmable Interval Timer, PDIP-24")
(docs http://download.intel.com/design/archives/periphrl/docs/23124406.pdf)
(footprints
(fp DIP*W15.24mm*)
(fp PDIP*W15.24mm*))
(fields
(field (name Reference) U)
(field (name Value) 82C54)
(field (name Footprint) Package_DIP:DIP-24_W15.24mm))
(pins
(pin (num 1) (name D7) (type BiDi))
(pin (num 2) (name D6) (type BiDi))
(pin (num 3) (name D5) (type BiDi))
(pin (num 4) (name D4) (type BiDi))
(pin (num 5) (name D3) (type BiDi))
(pin (num 6) (name D2) (type BiDi))
(pin (num 7) (name D1) (type BiDi))
(pin (num 8) (name D0) (type BiDi))
(pin (num 9) (name CLK0) (type input))
(pin (num 10) (name OUT0) (type output))
(pin (num 11) (name G0) (type input))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name OUT1) (type output))
(pin (num 14) (name G1) (type input))
(pin (num 15) (name CLK1) (type input))
(pin (num 16) (name G2) (type input))
(pin (num 17) (name OUT2) (type output))
(pin (num 18) (name CLK2) (type input))
(pin (num 19) (name A0) (type input))
(pin (num 20) (name A1) (type input))
(pin (num 21) (name ~CS~) (type input))
(pin (num 22) (name ~RD~) (type input))
(pin (num 23) (name ~WR~) (type input))
(pin (num 24) (name VCC) (type power_in)))))
(libraries
(library (logical 74xx)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/74xx.lib"))
(library (logical 8085)
(uri C:\Users\hotkey\SparkleShare\documents\electro\KiCad\CPU8085/8085.lib))
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Interface_UART)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Interface_UART.lib"))
(library (logical Memory_EPROM)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Memory_EPROM.lib"))
(library (logical Oscillator)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Oscillator.lib"))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib"))
(library (logical Timer)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Timer.lib")))
(nets
(net (code 3) (name /CPU/RESET)
(node (ref U1) (pin 3))
(node (ref U7) (pin 35)))
(net (code 7) (name /CPU/~IOR)
(node (ref U12) (pin 22))
(node (ref U4) (pin 18))
(node (ref U7) (pin 21)))
(net (code 8) (name /CPU/~IOW)
(node (ref U4) (pin 17))
(node (ref U12) (pin 23))
(node (ref U7) (pin 18)))
(net (code 9) (name /CPU/CLOCK)
(node (ref U12) (pin 9))
(node (ref U12) (pin 18))
(node (ref X1) (pin 8))
(node (ref U7) (pin 16))
(node (ref U1) (pin 1))
(node (ref U12) (pin 15)))
(net (code 11) (name /CPU/~MEMR)
(node (ref U5) (pin 22))
(node (ref U4) (pin 16))
(node (ref U6) (pin 22)))
(net (code 12) (name /CPU/~MEMW)
(node (ref U4) (pin 15))
(node (ref U6) (pin 27)))
(net (code 13) (name /CPU/~ROMCE)
(node (ref U5) (pin 20))
(node (ref U4) (pin 14)))
(net (code 14) (name /CPU/~RAMCE)
(node (ref U4) (pin 13))
(node (ref U6) (pin 20)))
(net (code 15) (name GND)
(node (ref C4) (pin 1))
(node (ref U8) (pin 15))
(node (ref U1) (pin 10))
(node (ref U7) (pin 22))
(node (ref U1) (pin 5))
(node (ref U7) (pin 19))
(node (ref U7) (pin 39))
(node (ref U7) (pin 20))
(node (ref X1) (pin 7))
(node (ref R7) (pin 2))
(node (ref U2) (pin 10))
(node (ref U2) (pin 11))
(node (ref U5) (pin 14))
(node (ref R8) (pin 2))
(node (ref R6) (pin 2))
(node (ref R5) (pin 1))
(node (ref U5) (pin 1))
(node (ref U1) (pin 39))
(node (ref U1) (pin 20))
(node (ref U4) (pin 10))
(node (ref C1) (pin 2))
(node (ref J2) (pin 0))
(node (ref J2) (pin 5))
(node (ref SW1) (pin 1))
(node (ref U9) (pin 5))
(node (ref MK4) (pin 1))
(node (ref J1) (pin 3))
(node (ref U7) (pin 37))
(node (ref U7) (pin 38))
(node (ref J1) (pin 4))
(node (ref U9) (pin 4))
(node (ref MK3) (pin 1))
(node (ref U6) (pin 14))
(node (ref MK1) (pin 1))
(node (ref U12) (pin 12))
(node (ref MK2) (pin 1))
(node (ref U7) (pin 25))
(node (ref U9) (pin 8)))
(net (code 16) (name VCC)
(node (ref J1) (pin 2))
(node (ref U12) (pin 24))
(node (ref U5) (pin 28))
(node (ref U1) (pin 40))
(node (ref R1) (pin 2))
(node (ref R2) (pin 1))
(node (ref R3) (pin 1))
(node (ref R4) (pin 1))
(node (ref D1) (pin 1))
(node (ref U2) (pin 20))
(node (ref U9) (pin 16))
(node (ref U9) (pin 6))
(node (ref J1) (pin 1))
(node (ref C3) (pin 2))
(node (ref U6) (pin 28))
(node (ref X1) (pin 14))
(node (ref U7) (pin 40))
(node (ref U7) (pin 12))
(node (ref U4) (pin 20))
(node (ref U8) (pin 16))
(node (ref U7) (pin 13)))
(net (code 17) (name "Net-(U2-Pad1)")
(node (ref U2) (pin 1))
(node (ref U4) (pin 19)))
(net (code 19) (name "Net-(U1-Pad2)")
(node (ref U1) (pin 2)))
(net (code 20) (name "Net-(R7-Pad1)")
(node (ref R7) (pin 1))
(node (ref U1) (pin 7)))
(net (code 21) (name "Net-(R8-Pad1)")
(node (ref R8) (pin 1))
(node (ref U1) (pin 6)))
(net (code 22) (name "Net-(R6-Pad1)")
(node (ref U1) (pin 8))
(node (ref R6) (pin 1)))
(net (code 23) (name "Net-(R1-Pad1)")
(node (ref U1) (pin 35))
(node (ref R1) (pin 1)))
(net (code 24) (name "Net-(U1-Pad37)")
(node (ref U1) (pin 37)))
(net (code 25) (name "Net-(U1-Pad33)")
(node (ref U1) (pin 33)))
(net (code 26) (name "Net-(U1-Pad29)")
(node (ref U1) (pin 29)))
(net (code 27) (name "Net-(U1-Pad11)")
(node (ref U1) (pin 11)))
(net (code 28) (name "Net-(R5-Pad2)")
(node (ref R5) (pin 2))
(node (ref U1) (pin 9)))
(net (code 29) (name "Net-(U1-Pad4)")
(node (ref U1) (pin 4)))
(net (code 30) (name "Net-(U1-Pad38)")
(node (ref U1) (pin 38)))
(net (code 31) (name "Net-(U1-Pad30)")
(node (ref U1) (pin 30))
(node (ref U4) (pin 4)))
(net (code 32) (name "Net-(R2-Pad2)")
(node (ref U1) (pin 32))
(node (ref U4) (pin 2))
(node (ref R2) (pin 2)))
(net (code 33) (name "Net-(R3-Pad2)")
(node (ref U4) (pin 3))
(node (ref U1) (pin 31))
(node (ref R3) (pin 2)))
(net (code 34) (name "Net-(U1-Pad34)")
(node (ref U4) (pin 1))
(node (ref U1) (pin 34)))
(net (code 35) (name "Net-(C1-Pad1)")
(node (ref D1) (pin 2))
(node (ref U1) (pin 36))
(node (ref R4) (pin 2))
(node (ref SW1) (pin 2))
(node (ref C1) (pin 1)))
(net (code 36) (name "Net-(X1-Pad1)")
(node (ref X1) (pin 1)))
(net (code 39) (name "Net-(U7-Pad33)")
(node (ref U7) (pin 33)))
(net (code 40) (name "Net-(U7-Pad31)")
(node (ref U7) (pin 31)))
(net (code 41) (name "Net-(U7-Pad34)")
(node (ref U7) (pin 34)))
(net (code 42) (name "Net-(U7-Pad23)")
(node (ref U7) (pin 23)))
(net (code 43) (name "Net-(U7-Pad24)")
(node (ref U7) (pin 24)))
(net (code 44) (name "Net-(U7-Pad15)")
(node (ref U7) (pin 9))
(node (ref U7) (pin 15)))
(net (code 45) (name "Net-(U7-Pad30)")
(node (ref U7) (pin 30)))
(net (code 46) (name "Net-(U7-Pad17)")
(node (ref U7) (pin 17)))
(net (code 47) (name /UART/RXD)
(node (ref U8) (pin 9))
(node (ref U7) (pin 10)))
(net (code 48) (name /UART/TXD)
(node (ref U8) (pin 10))
(node (ref U7) (pin 11)))
(net (code 49) (name /UART/~RTS)
(node (ref U8) (pin 11))
(node (ref U7) (pin 32)))
(net (code 50) (name "Net-(C5-Pad1)")
(node (ref U8) (pin 4))
(node (ref C5) (pin 1)))
(net (code 51) (name "Net-(C5-Pad2)")
(node (ref U8) (pin 5))
(node (ref C5) (pin 2)))
(net (code 52) (name "Net-(C2-Pad2)")
(node (ref C2) (pin 2))
(node (ref U8) (pin 3)))
(net (code 53) (name "Net-(C2-Pad1)")
(node (ref C2) (pin 1))
(node (ref U8) (pin 1)))
(net (code 54) (name /UART/~CTS)
(node (ref U7) (pin 36))
(node (ref U8) (pin 12)))
(net (code 55) (name "Net-(J2-Pad3)")
(node (ref U8) (pin 7))
(node (ref J2) (pin 3)))
(net (code 56) (name "Net-(J2-Pad7)")
(node (ref U8) (pin 14))
(node (ref J2) (pin 7)))
(net (code 57) (name "Net-(J2-Pad8)")
(node (ref U8) (pin 13))
(node (ref J2) (pin 8)))
(net (code 58) (name "Net-(J2-Pad2)")
(node (ref U8) (pin 8))
(node (ref J2) (pin 2)))
(net (code 59) (name "Net-(J2-Pad9)")
(node (ref J2) (pin 9)))
(net (code 60) (name "Net-(J2-Pad4)")
(node (ref J2) (pin 4)))
(net (code 61) (name "Net-(J2-Pad1)")
(node (ref J2) (pin 1)))
(net (code 62) (name "Net-(J2-Pad6)")
(node (ref J2) (pin 6)))
(net (code 63) (name "Net-(C3-Pad1)")
(node (ref C3) (pin 1))
(node (ref U8) (pin 2)))
(net (code 64) (name "Net-(C4-Pad2)")
(node (ref U8) (pin 6))
(node (ref C4) (pin 2)))
(net (code 65) (name "Net-(U12-Pad16)")
(node (ref U12) (pin 16)))
(net (code 66) (name "Net-(U12-Pad17)")
(node (ref U12) (pin 17)))
(net (code 67) (name "Net-(U12-Pad14)")
(node (ref U12) (pin 14)))
(net (code 68) (name "Net-(U12-Pad13)")
(node (ref U12) (pin 13)))
(net (code 69) (name "Net-(U12-Pad11)")
(node (ref U12) (pin 11)))
(net (code 70) (name "Net-(U12-Pad10)")
(node (ref U12) (pin 10)))
(net (code 71) (name /CPU/D5)
(node (ref U7) (pin 6))
(node (ref U2) (pin 7))
(node (ref U5) (pin 17))
(node (ref U12) (pin 3))
(node (ref U6) (pin 17))
(node (ref U1) (pin 17)))
(net (code 72) (name /CPU/D0)
(node (ref U7) (pin 1))
(node (ref U1) (pin 12))
(node (ref U6) (pin 11))
(node (ref U5) (pin 11))
(node (ref U12) (pin 8))
(node (ref U2) (pin 2)))
(net (code 73) (name /CPU/D1)
(node (ref U12) (pin 7))
(node (ref U7) (pin 2))
(node (ref U5) (pin 12))
(node (ref U6) (pin 12))
(node (ref U2) (pin 3))
(node (ref U1) (pin 13)))
(net (code 74) (name /CPU/D2)
(node (ref U1) (pin 14))
(node (ref U6) (pin 13))
(node (ref U5) (pin 13))
(node (ref U2) (pin 4))
(node (ref U12) (pin 6))
(node (ref U7) (pin 3)))
(net (code 75) (name /CPU/D3)
(node (ref U1) (pin 15))
(node (ref U12) (pin 5))
(node (ref U2) (pin 5))
(node (ref U5) (pin 15))
(node (ref U6) (pin 15))
(node (ref U7) (pin 4)))
(net (code 76) (name /CPU/D4)
(node (ref U5) (pin 16))
(node (ref U12) (pin 4))
(node (ref U7) (pin 5))
(node (ref U1) (pin 16))
(node (ref U2) (pin 6))
(node (ref U6) (pin 16)))
(net (code 77) (name /CPU/D6)
(node (ref U7) (pin 7))
(node (ref U5) (pin 18))
(node (ref U1) (pin 18))
(node (ref U2) (pin 8))
(node (ref U6) (pin 18))
(node (ref U12) (pin 2)))
(net (code 78) (name /CPU/D7)
(node (ref U1) (pin 19))
(node (ref U5) (pin 19))
(node (ref U6) (pin 19))
(node (ref U12) (pin 1))
(node (ref U2) (pin 9))
(node (ref U7) (pin 8)))
(net (code 79) (name /CPU/A0)
(node (ref U12) (pin 19))