-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHannes256.net
1188 lines (1188 loc) · 42.7 KB
/
Hannes256.net
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 /home/sukko/Documents/kicad/Hannes256/Hannes256.sch)
(date "Thu 28 Dec 2023 21:55:14 CET")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Hannes256: C16/+4 256 kB RAM Expansion")
(company SukkoPera)
(rev 1git)
(date 2022-11-03)
(source Hannes256.sch)
(comment (number 1) (value "Hannes Version (Update 1 with \"TED Feature\")"))
(comment (number 2) (value "Based on drawings by Solder/Synergy"))
(comment (number 3) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 4) (value ""))))
(sheet (number 2) (name /RAM/) (tstamps /62E48B71/)
(title_block
(title "Hannes256: C16/+4 256 kB RAM Expansion")
(company SukkoPera)
(rev 1git)
(date 2022-09-25)
(source ram.sch)
(comment (number 1) (value "Hannes Version (Update 1 with \"TED Feature\")"))
(comment (number 2) (value "Based on drawings by Solder/Synergy"))
(comment (number 3) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/)
(title_block
(title "Hannes256: C16/+4 256 kB RAM Expansion")
(company SukkoPera)
(rev 2git)
(date 2023-01-09)
(source ras_cas_gen.sch)
(comment (number 1) (value "Hannes Version (Update 1 with \"TED Feature\")"))
(comment (number 2) (value "Based on drawings by Solder/Synergy"))
(comment (number 3) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value TED_SOCKET)
(footprint Hannes256:DIP-48_W15.24mm_LongPads_ModSilkS)
(datasheet DOCUMENTATION)
(libsource (lib MOS_7360_TED) (part TED_SOCKET) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 639188CC))
(comp (ref U1)
(value MOS_7360_TED)
(footprint Package_DIP:DIP-48_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name LCSC) -)
(field (name MouserPN) -))
(libsource (lib MOS_7360_TED) (part MOS_7360_TED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6391891E))
(comp (ref J2)
(value RAM_SELECTOR)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 63918991))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C17414))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 639189C0))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C17414))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 639189C6))
(comp (ref J3)
(value CONN_CS)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 63E0AE52))
(comp (ref V0)
(value CC_LOGO)
(footprint Hannes256:cc_by_nc_sa)
(fields
(field (name LCSC) -)
(field (name MouserPN) -))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63C4EC1B))
(comp (ref U7)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 6378B1DD))
(comp (ref U10)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 6378F5B9))
(comp (ref U11)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63AD6320))
(comp (ref U12)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63AD632A))
(comp (ref U13)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63AD6334))
(comp (ref U14)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63AD633E))
(comp (ref U8)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 6378E054))
(comp (ref U9)
(value 41256)
(footprint Package_DIP:DIP-16_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "See README for supported chips"))
(libsource (lib 41256) (part 41256) (description ""))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 6378F3E3))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63BD05FA))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63BDC3DA))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63BEA0EF))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63BF7A01))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63C04FDA))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63C05258))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63C05278))
(comp (ref C14)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /62E48B71/))
(tstamp 63C05298))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63A64678))
(comp (ref U6)
(value 74HCT257)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(fields
(field (name LCSC) C707097)
(field (name Notes) "HCT recommended, '157 works just as well"))
(libsource (lib 74ls257) (part 74LS257) (description ""))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63A64692))
(comp (ref U5)
(value 74HCT257)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(fields
(field (name LCSC) C707097)
(field (name Notes) "HCT recommended, '157 works just as well"))
(libsource (lib 74ls257) (part 74LS257) (description ""))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63A64698))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63A6467E))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63A64654))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63ECD15A))
(comp (ref U2)
(value GAL20V8)
(footprint Package_DIP:DIP-24_W7.62mm_Socket)
(datasheet DOCUMENTATION)
(libsource (lib GAL20V8) (part GAL20V8) (description ""))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63F7FBC6))
(comp (ref U3)
(value 74HCT573)
(footprint Package_SO:SO-20_5.3x12.6mm_P1.27mm)
(datasheet 74xx/74hc573.pdf)
(fields
(field (name LCSC) C2864941)
(field (name MouserPN) 595-SN74HCT573NSR))
(libsource (lib 74xx) (part 74LS573) (description "8-bit Latch 3-state outputs"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63DD8844))
(comp (ref U15)
(value NE555)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/ne555.pdf)
(fields
(field (name LCSC) C5125085))
(libsource (lib Timer) (part NE555D) (description "Precision Timers, 555 compatible, SOIC-8"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63DF3FB7))
(comp (ref C16)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C1710))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63E09791))
(comp (ref RN1)
(value 1k)
(footprint Resistor_SMD:R_Array_Convex_4x0603)
(datasheet ~)
(fields
(field (name LCSC) C20197))
(libsource (lib Device) (part R_Pack04) (description "4 resistor network, parallel topology"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63EB16B5))
(comp (ref RN2)
(value 1k)
(footprint Resistor_SMD:R_Array_Convex_4x0603)
(datasheet ~)
(fields
(field (name LCSC) C20197))
(libsource (lib Device) (part R_Pack04) (description "4 resistor network, parallel topology"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63EB357C))
(comp (ref U4)
(value 74HCT245)
(footprint Package_SO:SO-20_5.3x12.6mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(fields
(field (name LCSC) C133641)
(field (name MouserPN) 595-SN74HCT245ANSR))
(libsource (lib 74xx) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63F45705))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63FF0E8D))
(comp (ref C15)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name LCSC) C49678))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/~RAS~/~CAS~ Generation/") (tstamps /63A22C28/))
(tstamp 63FFE9A0)))
(libparts
(libpart (lib 41256) (part 41256)
(fields
(field (name Reference) U)
(field (name Value) 41256)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name A8) (type input))
(pin (num 2) (name D_IN) (type input))
(pin (num 3) (name R_~W) (type input))
(pin (num 4) (name ~RAS) (type input))
(pin (num 5) (name A0) (type input))
(pin (num 6) (name A2) (type input))
(pin (num 7) (name A1) (type input))
(pin (num 8) (name VCC) (type power_in))
(pin (num 9) (name A7) (type input))
(pin (num 10) (name A5) (type input))
(pin (num 11) (name A4) (type input))
(pin (num 12) (name A3) (type input))
(pin (num 13) (name A6) (type input))
(pin (num 14) (name D_OUT) (type 3state))
(pin (num 15) (name ~CAS) (type input))
(pin (num 16) (name VSS) (type input))))
(libpart (lib 74ls257) (part 74LS257)
(fields
(field (name Reference) U)
(field (name Value) 74LS257))
(pins
(pin (num 1) (name S) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name B1) (type input))
(pin (num 4) (name Y1) (type 3state))
(pin (num 5) (name A2) (type input))
(pin (num 6) (name B2) (type input))
(pin (num 7) (name Y2) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name Y3) (type 3state))
(pin (num 10) (name B3) (type input))
(pin (num 11) (name A3) (type input))
(pin (num 12) (name Y4) (type 3state))
(pin (num 13) (name B4) (type input))
(pin (num 14) (name A4) (type input))
(pin (num 15) (name OE) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS245)
(aliases
(alias 74HC245))
(description "Octal BUS Transceivers, 3-State outputs")
(docs http://www.ti.com/lit/gpn/sn74LS245)
(footprints
(fp DIP?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS245))
(pins
(pin (num 1) (name A->B) (type input))
(pin (num 2) (name A0) (type 3state))
(pin (num 3) (name A1) (type 3state))
(pin (num 4) (name A2) (type 3state))
(pin (num 5) (name A3) (type 3state))
(pin (num 6) (name A4) (type 3state))
(pin (num 7) (name A5) (type 3state))
(pin (num 8) (name A6) (type 3state))
(pin (num 9) (name A7) (type 3state))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name B7) (type 3state))
(pin (num 12) (name B6) (type 3state))
(pin (num 13) (name B5) (type 3state))
(pin (num 14) (name B4) (type 3state))
(pin (num 15) (name B3) (type 3state))
(pin (num 16) (name B2) (type 3state))
(pin (num 17) (name B1) (type 3state))
(pin (num 18) (name B0) (type 3state))
(pin (num 19) (name CE) (type input))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS573)
(description "8-bit Latch 3-state outputs")
(docs 74xx/74hc573.pdf)
(footprints
(fp DIP?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS573))
(pins
(pin (num 1) (name OE) (type input))
(pin (num 2) (name D0) (type input))
(pin (num 3) (name D1) (type input))
(pin (num 4) (name D2) (type input))
(pin (num 5) (name D3) (type input))
(pin (num 6) (name D4) (type input))
(pin (num 7) (name D5) (type input))
(pin (num 8) (name D6) (type input))
(pin (num 9) (name D7) (type input))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name Load) (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 Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(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))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_Pack04)
(description "4 resistor network, parallel topology")
(docs ~)
(footprints
(fp DIP*)
(fp SOIC*)
(fp R*Array*Concave*)
(fp R*Array*Convex*))
(fields
(field (name Reference) RN)
(field (name Value) R_Pack04))
(pins
(pin (num 1) (name R1.1) (type passive))
(pin (num 2) (name R2.1) (type passive))
(pin (num 3) (name R3.1) (type passive))
(pin (num 4) (name R4.1) (type passive))
(pin (num 5) (name R4.2) (type passive))
(pin (num 6) (name R3.2) (type passive))
(pin (num 7) (name R2.2) (type passive))
(pin (num 8) (name R1.2) (type passive))))
(libpart (lib GAL20V8) (part GAL20V8)
(fields
(field (name Reference) U)
(field (name Value) GAL20V8)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name I0_CLK) (type input))
(pin (num 2) (name I1) (type input))
(pin (num 3) (name I2) (type input))
(pin (num 4) (name I3) (type input))
(pin (num 5) (name I4) (type input))
(pin (num 6) (name I5) (type input))
(pin (num 7) (name I6) (type input))
(pin (num 8) (name I7) (type input))
(pin (num 9) (name I8) (type input))
(pin (num 10) (name I9) (type input))
(pin (num 11) (name I10) (type input))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name I_~OE) (type input))
(pin (num 14) (name I11) (type input))
(pin (num 15) (name O0) (type BiDi))
(pin (num 16) (name O1) (type BiDi))
(pin (num 17) (name O2) (type BiDi))
(pin (num 18) (name O3) (type BiDi))
(pin (num 19) (name O4) (type BiDi))
(pin (num 20) (name O5) (type BiDi))
(pin (num 21) (name O6) (type BiDi))
(pin (num 22) (name O7) (type BiDi))
(pin (num 23) (name I12) (type input))
(pin (num 24) (name VCC) (type power_in))))
(libpart (lib MOS_7360_TED) (part MOS_7360_TED)
(fields
(field (name Reference) U)
(field (name Value) MOS_7360_TED)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name A2) (type BiDi))
(pin (num 2) (name A1) (type BiDi))
(pin (num 3) (name A0) (type BiDi))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name CS0) (type output))
(pin (num 6) (name CS1) (type output))
(pin (num 7) (name R/~W) (type output))
(pin (num 8) (name ~IRQ) (type output))
(pin (num 9) (name MUX) (type BiDi))
(pin (num 10) (name ~RAS) (type output))
(pin (num 11) (name ~CAS) (type output))
(pin (num 12) (name CLKOUT) (type output))
(pin (num 13) (name COLOR) (type output))
(pin (num 14) (name CLKIN) (type input))
(pin (num 15) (name K0) (type BiDi))
(pin (num 16) (name K1) (type BiDi))
(pin (num 17) (name K2) (type BiDi))
(pin (num 18) (name K3) (type BiDi))
(pin (num 19) (name K4) (type BiDi))
(pin (num 20) (name K5) (type BiDi))
(pin (num 21) (name K6) (type BiDi))
(pin (num 22) (name K7) (type BiDi))
(pin (num 23) (name LUM) (type BiDi))
(pin (num 24) (name GND) (type power_in))
(pin (num 25) (name DB0) (type BiDi))
(pin (num 26) (name DB1) (type BiDi))
(pin (num 27) (name DB2) (type BiDi))
(pin (num 28) (name DB3) (type BiDi))
(pin (num 29) (name DB4) (type BiDi))
(pin (num 30) (name DB5) (type BiDi))
(pin (num 31) (name DB6) (type BiDi))
(pin (num 32) (name DB7) (type BiDi))
(pin (num 33) (name SND) (type output))
(pin (num 34) (name BA) (type BiDi))
(pin (num 35) (name AEC) (type BiDi))
(pin (num 36) (name A15) (type BiDi))
(pin (num 37) (name A14) (type BiDi))
(pin (num 38) (name A13) (type BiDi))
(pin (num 39) (name A12) (type BiDi))
(pin (num 40) (name A11) (type BiDi))
(pin (num 41) (name A10) (type BiDi))
(pin (num 42) (name A9) (type BiDi))
(pin (num 43) (name A8) (type BiDi))
(pin (num 44) (name A7) (type BiDi))
(pin (num 45) (name A6) (type BiDi))
(pin (num 46) (name A5) (type BiDi))
(pin (num 47) (name A4) (type BiDi))
(pin (num 48) (name A3) (type BiDi))))
(libpart (lib MOS_7360_TED) (part TED_SOCKET)
(fields
(field (name Reference) U)
(field (name Value) TED_SOCKET)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name A2) (type BiDi))
(pin (num 2) (name A1) (type BiDi))
(pin (num 3) (name A0) (type BiDi))
(pin (num 4) (name VCC) (type power_out))
(pin (num 5) (name CS0) (type input))
(pin (num 6) (name CS1) (type input))
(pin (num 7) (name R/~W) (type input))
(pin (num 8) (name ~IRQ) (type input))
(pin (num 9) (name MUX) (type BiDi))
(pin (num 10) (name ~RAS) (type input))
(pin (num 11) (name ~CAS) (type input))
(pin (num 12) (name CLKOUT) (type input))
(pin (num 13) (name COLOR) (type input))
(pin (num 14) (name CLKIN) (type output))
(pin (num 15) (name K0) (type BiDi))
(pin (num 16) (name K1) (type BiDi))
(pin (num 17) (name K2) (type BiDi))
(pin (num 18) (name K3) (type BiDi))
(pin (num 19) (name K4) (type BiDi))
(pin (num 20) (name K5) (type BiDi))
(pin (num 21) (name K6) (type BiDi))
(pin (num 22) (name K7) (type BiDi))
(pin (num 23) (name LUM) (type BiDi))
(pin (num 24) (name GND) (type power_out))
(pin (num 25) (name DB0) (type BiDi))
(pin (num 26) (name DB1) (type BiDi))
(pin (num 27) (name DB2) (type BiDi))
(pin (num 28) (name DB3) (type BiDi))
(pin (num 29) (name DB4) (type BiDi))
(pin (num 30) (name DB5) (type BiDi))
(pin (num 31) (name DB6) (type BiDi))
(pin (num 32) (name DB7) (type BiDi))
(pin (num 33) (name SND) (type input))
(pin (num 34) (name BA) (type BiDi))
(pin (num 35) (name AEC) (type BiDi))
(pin (num 36) (name A15) (type BiDi))
(pin (num 37) (name A14) (type BiDi))
(pin (num 38) (name A13) (type BiDi))
(pin (num 39) (name A12) (type BiDi))
(pin (num 40) (name A11) (type BiDi))
(pin (num 41) (name A10) (type BiDi))
(pin (num 42) (name A9) (type BiDi))
(pin (num 43) (name A8) (type BiDi))
(pin (num 44) (name A7) (type BiDi))
(pin (num 45) (name A6) (type BiDi))
(pin (num 46) (name A5) (type BiDi))
(pin (num 47) (name A4) (type BiDi))
(pin (num 48) (name A3) (type BiDi))))
(libpart (lib Timer) (part NE555D)
(aliases
(alias LM555xM)
(alias ICM7555xB)
(alias LMC555xM)
(alias MC1455B)
(alias TLC555xD)
(alias NA555D)
(alias SE555D)
(alias SA555D))
(description "Precision Timers, 555 compatible, SOIC-8")
(docs http://www.ti.com/lit/ds/symlink/ne555.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) NE555D)
(field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name TR) (type input))
(pin (num 3) (name Q) (type output))
(pin (num 4) (name R) (type input))
(pin (num 5) (name CV) (type input))
(pin (num 6) (name THR) (type input))
(pin (num 7) (name DIS) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib void) (part Void)
(fields
(field (name Reference) V)
(field (name Value) Void))))
(libraries
(library (logical 41256)
(uri /home/sukko/Documents/kicad/Hannes256/lib/41256.lib))
(library (logical 74ls257)
(uri /home/sukko/Documents/kicad/Hannes256/lib/74ls257.lib))
(library (logical 74xx)
(uri /usr/share/kicad/library/74xx.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical GAL20V8)
(uri /home/sukko/Documents/kicad/Hannes256/lib/GAL20V8.lib))
(library (logical MOS_7360_TED)
(uri /home/sukko/Documents/kicad/Hannes256/lib/MOS_7360_TED.lib))
(library (logical Timer)
(uri /usr/share/kicad/library/Timer.lib))
(library (logical void)
(uri /home/sukko/Documents/kicad/Hannes256/lib/void.lib)))
(nets
(net (code 1) (name /cs1)
(node (ref J1) (pin 6))
(node (ref U1) (pin 6)))
(net (code 2) (name /k3)
(node (ref U1) (pin 18))
(node (ref J1) (pin 18)))
(net (code 3) (name /k2)
(node (ref U1) (pin 17))
(node (ref J1) (pin 17)))
(net (code 4) (name /k1)
(node (ref U1) (pin 16))
(node (ref J1) (pin 16)))
(net (code 5) (name /k0)
(node (ref J1) (pin 15))
(node (ref U1) (pin 15)))
(net (code 6) (name /clkin)
(node (ref U1) (pin 14))
(node (ref J1) (pin 14)))
(net (code 7) (name /color)
(node (ref U1) (pin 13))
(node (ref J1) (pin 13)))
(net (code 8) (name /clkout)
(node (ref J1) (pin 12))
(node (ref U1) (pin 12)))
(net (code 9) (name ~RAS)
(node (ref U11) (pin 4))
(node (ref U14) (pin 4))
(node (ref U7) (pin 4))
(node (ref U10) (pin 4))
(node (ref U1) (pin 10))
(node (ref U13) (pin 4))
(node (ref J1) (pin 10))
(node (ref U12) (pin 4))
(node (ref U8) (pin 4))
(node (ref U9) (pin 4)))
(net (code 10) (name MUX)
(node (ref U5) (pin 1))
(node (ref U2) (pin 10))
(node (ref U6) (pin 1))
(node (ref U1) (pin 9))
(node (ref J1) (pin 9)))
(net (code 11) (name /~irq)
(node (ref U1) (pin 8))
(node (ref J1) (pin 8)))
(net (code 12) (name R_~W)
(node (ref U14) (pin 3))
(node (ref U11) (pin 3))
(node (ref U13) (pin 3))
(node (ref U2) (pin 23))
(node (ref U1) (pin 7))
(node (ref J1) (pin 7))
(node (ref U12) (pin 3))
(node (ref U7) (pin 3))
(node (ref U8) (pin 3))
(node (ref U10) (pin 3))
(node (ref U9) (pin 3)))
(net (code 13) (name /k4)
(node (ref U1) (pin 19))
(node (ref J1) (pin 19)))
(net (code 14) (name /cs0)
(node (ref J1) (pin 5))
(node (ref U1) (pin 5)))
(net (code 15) (name a7)
(node (ref U6) (pin 13))
(node (ref U1) (pin 44))
(node (ref J1) (pin 44)))
(net (code 16) (name a8)
(node (ref U5) (pin 5))
(node (ref J1) (pin 43))
(node (ref U1) (pin 43)))
(net (code 17) (name a9)
(node (ref J1) (pin 42))
(node (ref U5) (pin 11))
(node (ref U1) (pin 42)))
(net (code 18) (name /k6)
(node (ref J1) (pin 21))
(node (ref U1) (pin 21)))
(net (code 19) (name /k7)
(node (ref J1) (pin 22))
(node (ref U1) (pin 22)))
(net (code 20) (name a10)
(node (ref U5) (pin 14))
(node (ref U1) (pin 41))
(node (ref J1) (pin 41)))
(net (code 21) (name /k5)
(node (ref U1) (pin 20))
(node (ref J1) (pin 20)))
(net (code 22) (name /lum)
(node (ref J1) (pin 23))
(node (ref U1) (pin 23)))
(net (code 23) (name a11)
(node (ref J1) (pin 40))
(node (ref U6) (pin 2))
(node (ref U1) (pin 40)))
(net (code 24) (name a12)
(node (ref J1) (pin 39))
(node (ref U1) (pin 39))
(node (ref U2) (pin 6))
(node (ref U6) (pin 5)))
(net (code 25) (name a13)
(node (ref J1) (pin 38))
(node (ref U2) (pin 7))
(node (ref U6) (pin 11))
(node (ref U1) (pin 38)))
(net (code 26) (name a14)
(node (ref U6) (pin 14))
(node (ref U2) (pin 8))
(node (ref U1) (pin 37))
(node (ref J1) (pin 37)))
(net (code 27) (name a15)
(node (ref U1) (pin 36))
(node (ref U2) (pin 9))
(node (ref J1) (pin 36))
(node (ref U5) (pin 2)))
(net (code 28) (name AEC)
(node (ref U1) (pin 35))
(node (ref J1) (pin 35))
(node (ref U2) (pin 16)))
(net (code 29) (name /ba)
(node (ref J1) (pin 34))
(node (ref U1) (pin 34)))
(net (code 30) (name /snd)
(node (ref U1) (pin 33))
(node (ref J1) (pin 33)))
(net (code 31) (name /~cas_16k)
(node (ref J1) (pin 11))
(node (ref J2) (pin 1))
(node (ref R1) (pin 2)))
(net (code 32) (name ~RESET)
(node (ref U15) (pin 2))
(node (ref J3) (pin 1)))
(net (code 33) (name ~CS_IN)
(node (ref U2) (pin 5))
(node (ref J3) (pin 2)))
(net (code 34) (name ~CS_OUT)
(node (ref U2) (pin 21))
(node (ref J3) (pin 3)))
(net (code 35) (name ~CAS_64K)
(node (ref U14) (pin 15))
(node (ref U10) (pin 15))
(node (ref U13) (pin 15))
(node (ref U12) (pin 15))
(node (ref U8) (pin 15))
(node (ref U11) (pin 15))
(node (ref U9) (pin 15))
(node (ref U7) (pin 15))
(node (ref R2) (pin 2))
(node (ref J2) (pin 3)))
(net (code 36) (name /~cas)
(node (ref U1) (pin 11))
(node (ref J2) (pin 2)))
(net (code 37) (name GND)
(node (ref C12) (pin 2))
(node (ref C13) (pin 2))
(node (ref C16) (pin 2))
(node (ref J1) (pin 24))
(node (ref C4) (pin 2))
(node (ref C14) (pin 2))
(node (ref U7) (pin 16))
(node (ref U11) (pin 16))
(node (ref U10) (pin 16))
(node (ref U13) (pin 16))
(node (ref U5) (pin 15))
(node (ref U4) (pin 10))
(node (ref U6) (pin 8))
(node (ref U9) (pin 16))
(node (ref U14) (pin 16))
(node (ref U1) (pin 24))
(node (ref U8) (pin 16))
(node (ref C2) (pin 2))
(node (ref U12) (pin 16))
(node (ref U15) (pin 1))
(node (ref U2) (pin 12))
(node (ref U3) (pin 10))
(node (ref C8) (pin 2))
(node (ref U15) (pin 6))
(node (ref U6) (pin 15))
(node (ref U5) (pin 8))
(node (ref C3) (pin 2))
(node (ref C5) (pin 2))
(node (ref C6) (pin 2))
(node (ref C9) (pin 2))
(node (ref C10) (pin 2))
(node (ref C15) (pin 2))
(node (ref C7) (pin 2))
(node (ref C11) (pin 2)))
(net (code 39) (name m1)
(node (ref U8) (pin 7))
(node (ref U9) (pin 7))
(node (ref U14) (pin 7))
(node (ref U10) (pin 7))
(node (ref U12) (pin 7))
(node (ref U5) (pin 7))
(node (ref U11) (pin 7))
(node (ref U13) (pin 7))
(node (ref U7) (pin 7)))
(net (code 40) (name m8)
(node (ref U7) (pin 1))
(node (ref U14) (pin 1))
(node (ref U10) (pin 1))
(node (ref U11) (pin 1))
(node (ref U2) (pin 20))
(node (ref U12) (pin 1))
(node (ref U9) (pin 1))
(node (ref U13) (pin 1))
(node (ref U8) (pin 1)))
(net (code 41) (name m0)
(node (ref U7) (pin 5))
(node (ref U14) (pin 5))
(node (ref U11) (pin 5))
(node (ref U5) (pin 4))
(node (ref U12) (pin 5))
(node (ref U9) (pin 5))
(node (ref U8) (pin 5))
(node (ref U13) (pin 5))
(node (ref U10) (pin 5)))
(net (code 42) (name m2)
(node (ref U9) (pin 6))
(node (ref U11) (pin 6))
(node (ref U8) (pin 6))
(node (ref U10) (pin 6))
(node (ref U13) (pin 6))
(node (ref U14) (pin 6))
(node (ref U5) (pin 9))
(node (ref U7) (pin 6))
(node (ref U12) (pin 6)))
(net (code 43) (name m6)
(node (ref U7) (pin 13))
(node (ref U10) (pin 13))
(node (ref U8) (pin 13))
(node (ref U9) (pin 13))
(node (ref U13) (pin 13))
(node (ref U11) (pin 13))
(node (ref U6) (pin 9))
(node (ref U12) (pin 13))
(node (ref U14) (pin 13)))
(net (code 44) (name m3)
(node (ref U11) (pin 12))
(node (ref U5) (pin 12))
(node (ref U14) (pin 12))
(node (ref U7) (pin 12))
(node (ref U13) (pin 12))
(node (ref U12) (pin 12))
(node (ref U10) (pin 12))
(node (ref U9) (pin 12))
(node (ref U8) (pin 12)))
(net (code 45) (name m4)
(node (ref U10) (pin 11))
(node (ref U6) (pin 4))
(node (ref U14) (pin 11))
(node (ref U8) (pin 11))
(node (ref U11) (pin 11))
(node (ref U12) (pin 11))
(node (ref U7) (pin 11))
(node (ref U13) (pin 11))
(node (ref U9) (pin 11)))
(net (code 46) (name m5)
(node (ref U11) (pin 10))
(node (ref U14) (pin 10))
(node (ref U8) (pin 10))
(node (ref U6) (pin 7))
(node (ref U9) (pin 10))
(node (ref U7) (pin 10))
(node (ref U13) (pin 10))
(node (ref U10) (pin 10))
(node (ref U12) (pin 10)))
(net (code 47) (name m7)
(node (ref U7) (pin 9))
(node (ref U9) (pin 9))
(node (ref U10) (pin 9))
(node (ref U12) (pin 9))
(node (ref U6) (pin 12))
(node (ref U8) (pin 9))