-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathOpenAmiga500FastRamExpansion.net
More file actions
1145 lines (1145 loc) · 41.4 KB
/
OpenAmiga500FastRamExpansion.net
File metadata and controls
1145 lines (1145 loc) · 41.4 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 /home/sukko/Documents/kicad/OpenAmiga500FastRamExpansion/OpenAmiga500FastRamExpansion.sch)
(date "dom 19 mag 2019 15:26:50 CEST")
(tool "Eeschema 5.1.2")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title OpenAmiga500FastRamExpansion)
(company SukkoPera)
(rev 1git)
(date 2019-05-19)
(source OpenAmiga500FastRamExpansion.sch)
(comment (number 1) (value "Based on work by Kipper2K"))
(comment (number 2) (value "Original design by lvd/NedoPC"))
(comment (number 3) (value "Licensed under CERN OHL v.1.2"))
(comment (number 4) (value "")))))
(components
(comp (ref P99)
(value OSHW_LOGO)
(footprint Symbol:OSHW-Logo2_7.3x6mm_Copper)
(libsource (lib conn) (part CONN_1) (description "1 pin"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6E4465))
(comp (ref U2)
(value 74LS157)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS157)
(libsource (lib 74xx) (part 74LS157) (description "Quad 2 to 1 line Multiplexer"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6EEF52))
(comp (ref U3)
(value 74LS157)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS157)
(libsource (lib 74xx) (part 74LS157) (description "Quad 2 to 1 line Multiplexer"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6EF1AA))
(comp (ref U4)
(value ATF1502AS-10JU44)
(footprint OpenAmiga500FastRamExpansion:PLCC-44_THT-Socket)
(datasheet DOCUMENTATION)
(libsource (lib ATF1502AS-10JU44) (part ATF1502AS-10JU44) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C6C4B9A))
(comp (ref P1)
(value JTAG_CONNECTOR)
(footprint Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical)
(libsource (lib conn) (part CONN_5X2) (description "Symbole general de connecteur"))
(sheetpath (names /) (tstamps /))
(tstamp 5C72F1F1))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C7955DF))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C79F23B))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C79F319))
(comp (ref U8)
(value HYB5118160BSJ)
(footprint OpenAmiga500FastRamExpansion:SOJ-42-LongPads)
(datasheet DOCUMENTATION)
(libsource (lib HYB5118160BSJ) (part HYB5118160BSJ) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CAE7FBC))
(comp (ref U7)
(value HYB5118160BSJ)
(footprint OpenAmiga500FastRamExpansion:SOJ-42-LongPads)
(datasheet DOCUMENTATION)
(libsource (lib HYB5118160BSJ) (part HYB5118160BSJ) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CA394E5))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6C8DDB))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6C8E89))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6C8F65))
(comp (ref C14)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78DDA4))
(comp (ref C15)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78DDAA))
(comp (ref C16)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78DDB0))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C811150))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C811156))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C81115C))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C848C25))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C94983C))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA73DEB))
(comp (ref C1)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CD6434E))
(comp (ref U1)
(value 68000D)
(footprint OpenAmiga500FastRamExpansion:DIP-64_W22.86mm_Socket_LongPads_IC)
(datasheet https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf)
(libsource (lib CPU_NXP_68000) (part 68000D) (description "16/32-bit Microprocessor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CD7F9E2))
(comp (ref U6)
(value HYB5118160BSJ)
(footprint OpenAmiga500FastRamExpansion:SOJ-42-LongPads)
(datasheet DOCUMENTATION)
(libsource (lib HYB5118160BSJ) (part HYB5118160BSJ) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D005E41))
(comp (ref U5)
(value HYB5118160BSJ)
(footprint OpenAmiga500FastRamExpansion:SOJ-42-LongPads)
(datasheet DOCUMENTATION)
(libsource (lib HYB5118160BSJ) (part HYB5118160BSJ) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D005EC1))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D288D48))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D288D4E))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D288D54))
(comp (ref C17)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CAF41))
(comp (ref C18)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CAF47))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CAF4D))
(comp (ref J1)
(value 68000_SOCKET)
(footprint OpenAmiga500FastRamExpansion:DIP-64_W22.86mm_Socket_LongPads_Socket)
(datasheet https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf)
(libsource (lib 68000_DIP_SOCKET) (part 68000_SOCKET) (description "16/32-bit Microprocessor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3E0F8D))
(comp (ref LD1)
(value LED)
(footprint OpenAmiga500FastRamExpansion:LED_0805_HandSoldering_ModSilkS)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAB2B0))
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CBCAA9F)))
(libparts
(libpart (lib 68000_DIP_SOCKET) (part 68000_SOCKET)
(aliases
(alias 68010D))
(description "16/32-bit Microprocessor")
(docs https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf)
(fields
(field (name Reference) U)
(field (name Value) 68000_SOCKET))
(pins
(pin (num 1) (name D4) (type BiDi))
(pin (num 2) (name D3) (type BiDi))
(pin (num 3) (name D2) (type BiDi))
(pin (num 4) (name D1) (type BiDi))
(pin (num 5) (name D0) (type BiDi))
(pin (num 6) (name AS) (type input))
(pin (num 7) (name UDS) (type input))
(pin (num 8) (name LDS) (type input))
(pin (num 9) (name R/W) (type input))
(pin (num 10) (name DTACK) (type output))
(pin (num 11) (name BG) (type input))
(pin (num 12) (name BGACK) (type output))
(pin (num 13) (name BR) (type output))
(pin (num 14) (name VCC) (type power_out))
(pin (num 15) (name CLK) (type output))
(pin (num 16) (name GND) (type power_out))
(pin (num 17) (name HALT) (type BiDi))
(pin (num 18) (name RESET) (type BiDi))
(pin (num 19) (name VMA) (type input))
(pin (num 20) (name E) (type input))
(pin (num 21) (name VPA) (type output))
(pin (num 22) (name BERR) (type output))
(pin (num 23) (name IPL2) (type output))
(pin (num 24) (name IPL1) (type output))
(pin (num 25) (name IPL0) (type output))
(pin (num 26) (name FC2) (type input))
(pin (num 27) (name FC1) (type input))
(pin (num 28) (name FC0) (type input))
(pin (num 29) (name A1) (type input))
(pin (num 30) (name A2) (type input))
(pin (num 31) (name A3) (type input))
(pin (num 32) (name A4) (type input))
(pin (num 33) (name A5) (type input))
(pin (num 34) (name A6) (type input))
(pin (num 35) (name A7) (type input))
(pin (num 36) (name A8) (type input))
(pin (num 37) (name A9) (type input))
(pin (num 38) (name A10) (type input))
(pin (num 39) (name A11) (type input))
(pin (num 40) (name A12) (type input))
(pin (num 41) (name A13) (type input))
(pin (num 42) (name A14) (type input))
(pin (num 43) (name A15) (type input))
(pin (num 44) (name A16) (type input))
(pin (num 45) (name A17) (type input))
(pin (num 46) (name A18) (type input))
(pin (num 47) (name A19) (type input))
(pin (num 48) (name A20) (type input))
(pin (num 49) (name VCC) (type power_out))
(pin (num 50) (name A21) (type input))
(pin (num 51) (name A22) (type input))
(pin (num 52) (name A23) (type input))
(pin (num 53) (name GND) (type power_out))
(pin (num 54) (name D15) (type BiDi))
(pin (num 55) (name D14) (type BiDi))
(pin (num 56) (name D13) (type BiDi))
(pin (num 57) (name D12) (type BiDi))
(pin (num 58) (name D11) (type BiDi))
(pin (num 59) (name D10) (type BiDi))
(pin (num 60) (name D9) (type BiDi))
(pin (num 61) (name D8) (type BiDi))
(pin (num 62) (name D7) (type BiDi))
(pin (num 63) (name D6) (type BiDi))
(pin (num 64) (name D5) (type BiDi))))
(libpart (lib 74xx) (part 74LS157)
(description "Quad 2 to 1 line Multiplexer")
(docs http://www.ti.com/lit/gpn/sn74LS157)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS157))
(pins
(pin (num 1) (name S) (type input))
(pin (num 2) (name I0a) (type input))
(pin (num 3) (name I1a) (type input))
(pin (num 4) (name Za) (type output))
(pin (num 5) (name I0b) (type input))
(pin (num 6) (name I1b) (type input))
(pin (num 7) (name Zb) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name Zc) (type output))
(pin (num 10) (name I1c) (type input))
(pin (num 11) (name I0c) (type input))
(pin (num 12) (name Zd) (type output))
(pin (num 13) (name I1d) (type input))
(pin (num 14) (name I0d) (type input))
(pin (num 15) (name E) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib ATF1502AS-10JU44) (part ATF1502AS-10JU44)
(fields
(field (name Reference) U)
(field (name Value) ATF1502AS-10JU44)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name I1/GCLR) (type input))
(pin (num 2) (name I2/OE2/GCLK2) (type input))
(pin (num 3) (name VCC) (type power_in))
(pin (num 4) (name IO1) (type BiDi))
(pin (num 5) (name IO2) (type BiDi))
(pin (num 6) (name IO3) (type BiDi))
(pin (num 7) (name IO4_TDI) (type BiDi))
(pin (num 8) (name IO5) (type BiDi))
(pin (num 9) (name IO6) (type BiDi))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name IO7_PD1) (type BiDi))
(pin (num 12) (name IO8) (type BiDi))
(pin (num 13) (name IO9_TMS) (type BiDi))
(pin (num 14) (name IO10) (type BiDi))
(pin (num 15) (name VCC) (type power_in))
(pin (num 16) (name IO11) (type BiDi))
(pin (num 17) (name IO12) (type BiDi))
(pin (num 18) (name IO13) (type BiDi))
(pin (num 19) (name IO14) (type BiDi))
(pin (num 20) (name IO15) (type BiDi))
(pin (num 21) (name IO16) (type BiDi))
(pin (num 22) (name GND) (type power_in))
(pin (num 23) (name VCC) (type power_in))
(pin (num 24) (name IO17) (type BiDi))
(pin (num 25) (name IO18_PD2) (type BiDi))
(pin (num 26) (name IO19) (type BiDi))
(pin (num 27) (name IO20) (type BiDi))
(pin (num 28) (name IO21) (type BiDi))
(pin (num 29) (name IO22) (type input))
(pin (num 30) (name GND) (type power_in))
(pin (num 31) (name IO23) (type BiDi))
(pin (num 32) (name IO24_TCK) (type BiDi))
(pin (num 33) (name IO25) (type BiDi))
(pin (num 34) (name IO26) (type BiDi))
(pin (num 35) (name VCC) (type power_in))
(pin (num 36) (name IO27) (type BiDi))
(pin (num 37) (name IO28) (type BiDi))
(pin (num 38) (name IO29/TDO) (type BiDi))
(pin (num 39) (name IO30) (type BiDi))
(pin (num 40) (name IO31) (type BiDi))
(pin (num 41) (name IO32/GCLK3) (type BiDi))
(pin (num 42) (name GND) (type power_in))
(pin (num 43) (name I3/GCLK1) (type input))
(pin (num 44) (name I4/OE1) (type input))))
(libpart (lib CPU_NXP_68000) (part 68000D)
(aliases
(alias 68010D))
(description "16/32-bit Microprocessor")
(docs https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf)
(fields
(field (name Reference) U)
(field (name Value) 68000D))
(pins
(pin (num 1) (name D4) (type BiDi))
(pin (num 2) (name D3) (type BiDi))
(pin (num 3) (name D2) (type BiDi))
(pin (num 4) (name D1) (type BiDi))
(pin (num 5) (name D0) (type BiDi))
(pin (num 6) (name AS) (type output))
(pin (num 7) (name UDS) (type output))
(pin (num 8) (name LDS) (type output))
(pin (num 9) (name R/W) (type output))
(pin (num 10) (name DTACK) (type input))
(pin (num 11) (name BG) (type output))
(pin (num 12) (name BGACK) (type input))
(pin (num 13) (name BR) (type input))
(pin (num 14) (name VCC) (type power_in))
(pin (num 15) (name CLK) (type input))
(pin (num 16) (name GND) (type power_in))
(pin (num 17) (name HALT) (type BiDi))
(pin (num 18) (name RESET) (type BiDi))
(pin (num 19) (name VMA) (type output))
(pin (num 20) (name E) (type output))
(pin (num 21) (name VPA) (type input))
(pin (num 22) (name BERR) (type input))
(pin (num 23) (name IPL2) (type input))
(pin (num 24) (name IPL1) (type input))
(pin (num 25) (name IPL0) (type input))
(pin (num 26) (name FC2) (type output))
(pin (num 27) (name FC1) (type output))
(pin (num 28) (name FC0) (type output))
(pin (num 29) (name A1) (type output))
(pin (num 30) (name A2) (type output))
(pin (num 31) (name A3) (type output))
(pin (num 32) (name A4) (type output))
(pin (num 33) (name A5) (type output))
(pin (num 34) (name A6) (type output))
(pin (num 35) (name A7) (type output))
(pin (num 36) (name A8) (type output))
(pin (num 37) (name A9) (type output))
(pin (num 38) (name A10) (type output))
(pin (num 39) (name A11) (type output))
(pin (num 40) (name A12) (type output))
(pin (num 41) (name A13) (type output))
(pin (num 42) (name A14) (type output))
(pin (num 43) (name A15) (type output))
(pin (num 44) (name A16) (type output))
(pin (num 45) (name A17) (type output))
(pin (num 46) (name A18) (type output))
(pin (num 47) (name A19) (type output))
(pin (num 48) (name A20) (type output))
(pin (num 49) (name VCC) (type power_in))
(pin (num 50) (name A21) (type output))
(pin (num 51) (name A22) (type output))
(pin (num 52) (name A23) (type output))
(pin (num 53) (name GND) (type power_in))
(pin (num 54) (name D15) (type BiDi))
(pin (num 55) (name D14) (type BiDi))
(pin (num 56) (name D13) (type BiDi))
(pin (num 57) (name D12) (type BiDi))
(pin (num 58) (name D11) (type BiDi))
(pin (num 59) (name D10) (type BiDi))
(pin (num 60) (name D9) (type BiDi))
(pin (num 61) (name D8) (type BiDi))
(pin (num 62) (name D7) (type BiDi))
(pin (num 63) (name D6) (type BiDi))
(pin (num 64) (name D5) (type BiDi))))
(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 LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (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 HYB5118160BSJ) (part HYB5118160BSJ)
(fields
(field (name Reference) U)
(field (name Value) HYB5118160BSJ)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name VCC) (type power_in))
(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 VCC) (type power_in))
(pin (num 7) (name D5) (type BiDi))
(pin (num 8) (name D6) (type BiDi))
(pin (num 9) (name D7) (type BiDi))
(pin (num 10) (name D8) (type BiDi))
(pin (num 11) (name NC) (type unspc))
(pin (num 12) (name NC) (type unspc))
(pin (num 13) (name WE) (type input))
(pin (num 14) (name RAS) (type input))
(pin (num 15) (name NC) (type unspc))
(pin (num 16) (name NC) (type unspc))
(pin (num 17) (name A0) (type input))
(pin (num 18) (name A1) (type input))
(pin (num 19) (name A2) (type input))
(pin (num 20) (name A3) (type input))
(pin (num 21) (name VCC) (type power_in))
(pin (num 22) (name GND) (type power_in))
(pin (num 23) (name A4) (type input))
(pin (num 24) (name A5) (type input))
(pin (num 25) (name A6) (type input))
(pin (num 26) (name A7) (type input))
(pin (num 27) (name A8) (type input))
(pin (num 28) (name A9) (type input))
(pin (num 29) (name OE) (type input))
(pin (num 30) (name UCAS) (type input))
(pin (num 31) (name LCAS) (type input))
(pin (num 32) (name NC) (type unspc))
(pin (num 33) (name D9) (type BiDi))
(pin (num 34) (name D10) (type BiDi))
(pin (num 35) (name D11) (type BiDi))
(pin (num 36) (name D12) (type BiDi))
(pin (num 37) (name GND) (type power_in))
(pin (num 38) (name D13) (type BiDi))
(pin (num 39) (name D14) (type BiDi))
(pin (num 40) (name D15) (type BiDi))
(pin (num 41) (name D16) (type BiDi))
(pin (num 42) (name GND) (type power_in))))
(libpart (lib conn) (part CONN_1)
(description "1 pin")
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib conn) (part CONN_5X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_5X2))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name ~) (type passive))
(pin (num 10) (name ~) (type passive)))))
(libraries
(library (logical 68000_DIP_SOCKET)
(uri /home/sukko/Documents/kicad/OpenAmiga500FastRamExpansion/lib/68000_DIP_SOCKET.lib))
(library (logical 74xx)
(uri /usr/share/kicad/library/74xx.lib))
(library (logical ATF1502AS-10JU44)
(uri /home/sukko/Documents/kicad/OpenAmiga500FastRamExpansion/lib/ATF1502AS-10JU44.lib))
(library (logical CPU_NXP_68000)
(uri /usr/share/kicad/library/CPU_NXP_68000.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical HYB5118160BSJ)
(uri /home/sukko/Documents/kicad/OpenAmiga500FastRamExpansion/lib/HYB5118160BSJ.lib))
(library (logical conn)
(uri /home/sukko/Documents/kicad/lib/libs-walter/library/conn.lib)))
(nets
(net (code 1) (name /clk)
(node (ref J1) (pin 15))
(node (ref U1) (pin 15))
(node (ref U4) (pin 43)))
(net (code 2) (name /~reset)
(node (ref U1) (pin 18))
(node (ref U4) (pin 1))
(node (ref J1) (pin 18)))
(net (code 3) (name /d15)
(node (ref U8) (pin 41))
(node (ref U6) (pin 41))
(node (ref U5) (pin 41))
(node (ref U7) (pin 41))
(node (ref J1) (pin 54))
(node (ref U1) (pin 54))
(node (ref U4) (pin 11)))
(net (code 4) (name /d14)
(node (ref U4) (pin 9))
(node (ref U1) (pin 55))
(node (ref U7) (pin 40))
(node (ref J1) (pin 55))
(node (ref U8) (pin 40))
(node (ref U5) (pin 40))
(node (ref U6) (pin 40)))
(net (code 5) (name /d13)
(node (ref U1) (pin 56))
(node (ref U6) (pin 39))
(node (ref U8) (pin 39))
(node (ref U5) (pin 39))
(node (ref U7) (pin 39))
(node (ref U4) (pin 8))
(node (ref J1) (pin 56)))
(net (code 6) (name /d12)
(node (ref U1) (pin 57))
(node (ref U6) (pin 38))
(node (ref J1) (pin 57))
(node (ref U5) (pin 38))
(node (ref U8) (pin 38))
(node (ref U7) (pin 38))
(node (ref U4) (pin 6)))
(net (code 7) (name /d11)
(node (ref U7) (pin 36))
(node (ref U6) (pin 36))
(node (ref J1) (pin 58))
(node (ref U5) (pin 36))
(node (ref U8) (pin 36))
(node (ref U1) (pin 58)))
(net (code 8) (name /d10)
(node (ref U5) (pin 35))
(node (ref J1) (pin 59))
(node (ref U1) (pin 59))
(node (ref U7) (pin 35))
(node (ref U6) (pin 35))
(node (ref U8) (pin 35)))
(net (code 9) (name /d9)
(node (ref U8) (pin 34))
(node (ref U5) (pin 34))
(node (ref J1) (pin 60))
(node (ref U1) (pin 60))
(node (ref U7) (pin 34))
(node (ref U6) (pin 34)))
(net (code 10) (name /d8)
(node (ref U1) (pin 61))
(node (ref U7) (pin 33))
(node (ref J1) (pin 61))
(node (ref U5) (pin 33))
(node (ref U8) (pin 33))
(node (ref U6) (pin 33)))
(net (code 11) (name /d7)
(node (ref U7) (pin 10))
(node (ref U5) (pin 10))
(node (ref U6) (pin 10))
(node (ref U1) (pin 62))
(node (ref U8) (pin 10))
(node (ref J1) (pin 62)))
(net (code 12) (name /d6)
(node (ref U1) (pin 63))
(node (ref U6) (pin 9))
(node (ref U5) (pin 9))
(node (ref U7) (pin 9))
(node (ref J1) (pin 63))
(node (ref U8) (pin 9)))
(net (code 13) (name /ma1)
(node (ref U6) (pin 18))
(node (ref U5) (pin 18))
(node (ref U8) (pin 18))
(node (ref U7) (pin 18))
(node (ref U4) (pin 4)))
(net (code 14) (name /ma0)
(node (ref U4) (pin 5))
(node (ref U7) (pin 17))
(node (ref U5) (pin 17))
(node (ref U8) (pin 17))
(node (ref U6) (pin 17)))
(net (code 15) (name "Net-(U6-Pad16)")
(node (ref U6) (pin 16)))
(net (code 16) (name "Net-(U6-Pad15)")
(node (ref U6) (pin 15)))
(net (code 17) (name /~ras1)
(node (ref U4) (pin 36))
(node (ref U6) (pin 14)))
(net (code 18) (name /r~w)
(node (ref J1) (pin 9))
(node (ref U8) (pin 13))
(node (ref U7) (pin 13))
(node (ref U5) (pin 13))
(node (ref U6) (pin 13))
(node (ref U1) (pin 9)))
(net (code 19) (name "Net-(U6-Pad12)")
(node (ref U6) (pin 12)))
(net (code 20) (name "Net-(U6-Pad11)")
(node (ref U6) (pin 11)))
(net (code 21) (name /d5)
(node (ref U7) (pin 8))
(node (ref U8) (pin 8))
(node (ref U5) (pin 8))
(node (ref J1) (pin 64))
(node (ref U6) (pin 8))
(node (ref U1) (pin 64)))
(net (code 22) (name /a6)
(node (ref U2) (pin 14))
(node (ref J1) (pin 34))
(node (ref U1) (pin 34))
(node (ref U4) (pin 24)))
(net (code 23) (name /a5)
(node (ref U4) (pin 25))
(node (ref U1) (pin 33))
(node (ref J1) (pin 33))
(node (ref U2) (pin 11)))
(net (code 24) (name /a4)
(node (ref U1) (pin 32))
(node (ref J1) (pin 32))
(node (ref U4) (pin 26))
(node (ref U2) (pin 5)))
(net (code 25) (name /a3)
(node (ref J1) (pin 31))
(node (ref U2) (pin 2))
(node (ref U1) (pin 31))
(node (ref U4) (pin 27)))
(net (code 26) (name /a2)
(node (ref U4) (pin 28))
(node (ref J1) (pin 30))
(node (ref U1) (pin 30)))
(net (code 27) (name /a1)
(node (ref J1) (pin 29))
(node (ref U4) (pin 29))
(node (ref U1) (pin 29)))
(net (code 28) (name /a7)
(node (ref U1) (pin 35))
(node (ref J1) (pin 35))
(node (ref U3) (pin 2)))
(net (code 29) (name /a18)
(node (ref U1) (pin 46))
(node (ref U4) (pin 19))
(node (ref U2) (pin 3))
(node (ref J1) (pin 46)))
(net (code 30) (name /d4)
(node (ref J1) (pin 1))
(node (ref U1) (pin 1))
(node (ref U7) (pin 7))
(node (ref U5) (pin 7))
(node (ref U8) (pin 7))
(node (ref U6) (pin 7)))
(net (code 31) (name /d3)
(node (ref J1) (pin 2))
(node (ref U6) (pin 5))
(node (ref U5) (pin 5))
(node (ref U1) (pin 2))
(node (ref U8) (pin 5))
(node (ref U7) (pin 5)))
(net (code 32) (name /d2)
(node (ref U5) (pin 4))
(node (ref U6) (pin 4))
(node (ref J1) (pin 3))
(node (ref U7) (pin 4))
(node (ref U1) (pin 3))
(node (ref U8) (pin 4)))
(net (code 33) (name /d1)
(node (ref U5) (pin 3))
(node (ref U6) (pin 3))
(node (ref U7) (pin 3))
(node (ref J1) (pin 4))
(node (ref U8) (pin 3))
(node (ref U1) (pin 4)))
(net (code 34) (name /d0)
(node (ref U1) (pin 5))
(node (ref U6) (pin 2))
(node (ref U7) (pin 2))
(node (ref J1) (pin 5))
(node (ref U5) (pin 2))
(node (ref U8) (pin 2)))
(net (code 35) (name /a20)
(node (ref U4) (pin 17))
(node (ref U1) (pin 48))
(node (ref J1) (pin 48)))
(net (code 36) (name /a19)
(node (ref U4) (pin 18))
(node (ref J1) (pin 47))
(node (ref U1) (pin 47)))
(net (code 37) (name /ma2)
(node (ref U2) (pin 4))
(node (ref U7) (pin 19))
(node (ref U8) (pin 19))
(node (ref U6) (pin 19))
(node (ref U5) (pin 19)))
(net (code 38) (name /a17)
(node (ref J1) (pin 45))
(node (ref U1) (pin 45))
(node (ref U2) (pin 6))
(node (ref U4) (pin 20)))
(net (code 39) (name /a16)
(node (ref U2) (pin 10))
(node (ref J1) (pin 44))
(node (ref U1) (pin 44))
(node (ref U4) (pin 21)))
(net (code 40) (name /a15)
(node (ref U2) (pin 13))
(node (ref U1) (pin 43))
(node (ref J1) (pin 43)))
(net (code 41) (name /a14)
(node (ref J1) (pin 42))
(node (ref U3) (pin 3))
(node (ref U1) (pin 42)))
(net (code 42) (name /a13)
(node (ref U1) (pin 41))
(node (ref U3) (pin 6))
(node (ref J1) (pin 41)))
(net (code 43) (name /a12)
(node (ref U3) (pin 10))
(node (ref U1) (pin 40))
(node (ref J1) (pin 40)))
(net (code 44) (name /a11)
(node (ref U3) (pin 13))
(node (ref J1) (pin 39))
(node (ref U1) (pin 39)))
(net (code 45) (name /a10)
(node (ref U3) (pin 14))
(node (ref J1) (pin 38))
(node (ref U1) (pin 38)))
(net (code 46) (name /a9)
(node (ref U3) (pin 11))
(node (ref J1) (pin 37))
(node (ref U1) (pin 37)))
(net (code 47) (name /a8)
(node (ref J1) (pin 36))
(node (ref U1) (pin 36))
(node (ref U3) (pin 5)))
(net (code 48) (name /ma3)
(node (ref U2) (pin 7))
(node (ref U8) (pin 20))
(node (ref U6) (pin 20))
(node (ref U7) (pin 20))
(node (ref U5) (pin 20)))
(net (code 49) (name "Net-(U6-Pad32)")
(node (ref U6) (pin 32)))
(net (code 50) (name /~ucas)
(node (ref U6) (pin 30))
(node (ref U5) (pin 30))
(node (ref U8) (pin 30))
(node (ref U7) (pin 30))
(node (ref U4) (pin 41)))
(net (code 51) (name /~lcas)
(node (ref U8) (pin 31))
(node (ref U5) (pin 31))
(node (ref U7) (pin 31))
(node (ref U6) (pin 31))
(node (ref U4) (pin 39)))
(net (code 52) (name /ma9)
(node (ref U7) (pin 28))
(node (ref U5) (pin 28))
(node (ref U6) (pin 28))
(node (ref U3) (pin 12))
(node (ref U8) (pin 28)))
(net (code 53) (name /ma8)
(node (ref U6) (pin 27))
(node (ref U7) (pin 27))
(node (ref U8) (pin 27))
(node (ref U5) (pin 27))
(node (ref U3) (pin 9)))
(net (code 54) (name /ma7)
(node (ref U8) (pin 26))
(node (ref U5) (pin 26))
(node (ref U3) (pin 7))
(node (ref U6) (pin 26))
(node (ref U7) (pin 26)))
(net (code 55) (name /ma6)
(node (ref U3) (pin 4))
(node (ref U5) (pin 25))
(node (ref U8) (pin 25))
(node (ref U7) (pin 25))
(node (ref U6) (pin 25)))
(net (code 56) (name /ma5)
(node (ref U2) (pin 12))
(node (ref U8) (pin 24))
(node (ref U7) (pin 24))
(node (ref U6) (pin 24))
(node (ref U5) (pin 24)))
(net (code 57) (name /ma4)
(node (ref U6) (pin 23))
(node (ref U5) (pin 23))
(node (ref U7) (pin 23))
(node (ref U8) (pin 23))
(node (ref U2) (pin 9)))
(net (code 58) (name GND)
(node (ref C2) (pin 2))
(node (ref U5) (pin 42))
(node (ref U5) (pin 37))
(node (ref C4) (pin 2))
(node (ref C5) (pin 2))
(node (ref C6) (pin 2))
(node (ref U3) (pin 15))
(node (ref U2) (pin 8))
(node (ref C7) (pin 2))
(node (ref U5) (pin 29))
(node (ref U5) (pin 22))
(node (ref C14) (pin 2))
(node (ref U4) (pin 30))
(node (ref U8) (pin 42))
(node (ref J1) (pin 16))
(node (ref C17) (pin 2))
(node (ref C9) (pin 2))
(node (ref C8) (pin 2))
(node (ref C10) (pin 2))
(node (ref C16) (pin 2))
(node (ref C15) (pin 2))
(node (ref U4) (pin 22))
(node (ref C3) (pin 2))
(node (ref U4) (pin 42))
(node (ref J1) (pin 53))
(node (ref U3) (pin 8))
(node (ref U2) (pin 15))
(node (ref C18) (pin 2))
(node (ref LD1) (pin 1))
(node (ref U4) (pin 10))
(node (ref C19) (pin 2))
(node (ref C1) (pin 2))
(node (ref U8) (pin 37))
(node (ref P1) (pin 2))
(node (ref C13) (pin 2))
(node (ref U6) (pin 29))
(node (ref U6) (pin 37))
(node (ref U6) (pin 42))
(node (ref U8) (pin 29))
(node (ref P1) (pin 10))
(node (ref C11) (pin 2))
(node (ref U7) (pin 22))
(node (ref C12) (pin 2))
(node (ref U6) (pin 22))
(node (ref U7) (pin 37))
(node (ref U1) (pin 16))
(node (ref U1) (pin 53))
(node (ref U7) (pin 29))
(node (ref U8) (pin 22))
(node (ref U7) (pin 42)))
(net (code 59) (name VCC)
(node (ref C18) (pin 1))
(node (ref C19) (pin 1))
(node (ref C8) (pin 1))
(node (ref U6) (pin 6))
(node (ref U6) (pin 1))
(node (ref C17) (pin 1))
(node (ref C16) (pin 1))
(node (ref C15) (pin 1))
(node (ref U7) (pin 6))
(node (ref C14) (pin 1))
(node (ref U6) (pin 21))
(node (ref U7) (pin 21))
(node (ref J1) (pin 14))
(node (ref C2) (pin 1))
(node (ref U7) (pin 1))
(node (ref C4) (pin 1))
(node (ref C5) (pin 1))
(node (ref C6) (pin 1))
(node (ref U1) (pin 14))
(node (ref U1) (pin 49))
(node (ref C7) (pin 1))
(node (ref C3) (pin 1))
(node (ref C1) (pin 1))
(node (ref J1) (pin 49))
(node (ref U5) (pin 21))
(node (ref U8) (pin 21))
(node (ref U5) (pin 6))
(node (ref U4) (pin 35))
(node (ref U2) (pin 16))
(node (ref U3) (pin 16))
(node (ref U5) (pin 1))
(node (ref R1) (pin 1))
(node (ref R2) (pin 1))
(node (ref R3) (pin 1))
(node (ref U8) (pin 1))
(node (ref C10) (pin 1))
(node (ref C13) (pin 1))
(node (ref U8) (pin 6))
(node (ref C12) (pin 1))