-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Raemixx500.net
8560 lines (8560 loc) · 334 KB
/
Raemixx500.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/Raemixx500/Raemixx500.sch)
(date "Wed 26 May 2021 00:13:18 CEST")
(tool "Eeschema 5.1.10")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-26)
(source Raemixx500.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 2) (name /CPU+Agnus/) (tstamps /5CAE5331/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2019-04-11)
(source cpu.sch)
(comment (number 1) (value "PROCESSOR AND OTHER USEFUL COMPONENTS"))
(comment (number 2) (value "Derived from Commodore Schematic #312813, Rev. 1 - Sheet 2 of 10"))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 3) (name /RAM/) (tstamps /5EA8075B/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-23)
(source ram.sch)
(comment (number 1) (value "MEMORY AND...WELL, I USED TO REMEMBER"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 4) (name "/Denise & Video Stuff/") (tstamps /5CBA5669/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-22)
(source video.sch)
(comment (number 1) (value "DENISE IS PRETTY MUCH INTO VIDEO..."))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 5) (name "/Paula & Audio Stuff/") (tstamps /5D2DC3A1/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-22)
(source audio.sch)
(comment (number 1) (value "PAULA PREFERS THE TRADITIONAL MODES"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 6) (name "/Parallel & Serial/") (tstamps /5E7E9EC4/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-23)
(source cias.sch)
(comment (number 1) (value "RS232 AND PARALLEL PORT"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 7) (name "/Floppy Drives/") (tstamps /6072A453/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2019-06-23)
(source floppy.sch)
(comment (number 1) (value "FLOPPY STUFF"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 8) (name "/Termination & Pullups/") (tstamps /5D6D5EBE/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-16)
(source terminators.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 9) (name "/Kickstart ROM/") (tstamps /5D86DD46/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2019-04-20)
(source rom.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 10) (name "/Clock Distribution/") (tstamps /5D88EC26/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2019-04-20)
(source clockdist.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 11) (name "/Expansion Bus/") (tstamps /5E813DC5/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2019-06-23)
(source expansion.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 12) (name "/Power & Decoupling/") (tstamps /5E9E4C57/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2020-04-04)
(source power.sch)
(comment (number 1) (value "POWER AND DECOUPLING"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 13) (name "/Real-Time Clock/") (tstamps /5CF615AB/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2021-05-23)
(source rtc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0"))))
(sheet (number 14) (name "/Trapdoor Expansion/") (tstamps /5D00C589/)
(title_block
(title Rämixx500)
(company SukkoPera)
(rev 1)
(date 2020-04-05)
(source trapdoor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Licensed under CC BY-NC-SA 4.0")))))
(components
(comp (ref V0)
(value OSHW_LOGO)
(footprint Raemixx500:cc_by_nc_sa)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) SKIP))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5ED3E7FB))
(comp (ref V1)
(value KICAD_LOGO)
(footprint Symbol:KiCad-Logo2_6mm_SilkScreen)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) SKIP))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5ED79790))
(comp (ref V2)
(value PROJ_LOGO)
(footprint Raemixx500:Logo)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) SKIP))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EB0B2BE))
(comp (ref R114)
(value 68)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CAEA43A))
(comp (ref U2)
(value FAT_AGNUS_8375)
(footprint Package_LCC:PLCC-84_THT-Socket)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) CUSTOM))
(libsource (lib FAT_AGNUS_8375) (part FAT_AGNUS_8375) (description ""))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CAEC18D))
(comp (ref R103)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CAF1F56))
(comp (ref R104)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CAF26DB))
(comp (ref R105)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CAF27C4))
(comp (ref U37)
(value 74LS32)
(footprint Package_DIP:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS32)
(fields
(field (name Cost) 0.442)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS32N)
(field (name Required) Y)
(field (name Section) PARALLEL/FLOPPY/KEYBOARD))
(libsource (lib 74xx) (part 74LS32) (description "Quad 2-input OR"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CB489DB))
(comp (ref JP2)
(value Jumper_3_Bridged23)
(footprint Raemixx500:Jumper3-Bridged23)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) JMP))
(libsource (lib Jumper_3_Bridged23) (part Jumper_3_Bridged23) (description "Jumper, 3-pole, pins 1+2 closed/bridged"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CB6FAD7))
(comp (ref R106)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CCACD78))
(comp (ref R107)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CCBE5F9))
(comp (ref C99)
(value 100n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.035)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") SA115C104KAR))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CCD0386))
(comp (ref R101)
(value 27)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CD17492))
(comp (ref R102)
(value 27)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CD4EF32))
(comp (ref U1)
(value 68000D)
(footprint Package_DIP:DIP-64_W22.86mm_Socket_LongPads)
(datasheet https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf)
(fields
(field (name Required) Y)
(field (name Section) CPU))
(libsource (lib 68000D) (part 68000D) (description "16/32-bit Microprocessor"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CDC0BF7))
(comp (ref U13)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(fields
(field (name Cost) 0.68)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS373N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls373) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CFCEC13))
(comp (ref U11)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(fields
(field (name Cost) 0.68)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS373N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls373) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CFF7EAA))
(comp (ref R113)
(value 47)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D0A2B83))
(comp (ref R112)
(value 68)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D0A2CB9))
(comp (ref R111)
(value 68)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D0A2D42))
(comp (ref U10)
(value 74LS244)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS244)
(fields
(field (name Cost) 0.62)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS244N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls244) (part 74LS244) (description "8-bit Bus Buffer 3-State outputs"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D116EA8))
(comp (ref U12)
(value 74LS244)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS244)
(fields
(field (name Cost) 0.62)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS244N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls244) (part 74LS244) (description "8-bit Bus Buffer 3-State outputs"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D188F20))
(comp (ref U5)
(value GARY_5719)
(footprint Package_DIP:DIP-48_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) CUSTOM))
(libsource (lib GARY) (part GARY_5719) (description ""))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 607A12E7))
(comp (ref U33)
(value 74LS258)
(footprint Package_DIP:DIP-16_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS258)
(fields
(field (name "MFG Name") N/A)
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib 74ls258) (part 74LS258) (description "Quad 2 to 1 Multiplexer, inverting"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CBE9A78))
(comp (ref E666)
(value 22p)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.141)
(field (name EMI_FILTER_TYPE) C)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") SA102A220JARC)
(field (name Required) R)
(field (name Section) CLOCK))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5CC5EA40))
(comp (ref X1)
(value XTAL)
(footprint Oscillator:Oscillator_DIP-14)
(datasheet http://www.txccorp.com/download/products/osc/7C_o.pdf)
(fields
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib xtal) (part XTAL) (description "Crystal Clock Oscillator"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D05A737))
(comp (ref FB101)
(value 68)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name EMI_FILTER_TYPE) R)
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D645153))
(comp (ref FB102)
(value 150)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name EMI_FILTER_TYPE) R)
(field (name Required) Y)
(field (name Section) CLOCK))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names /CPU+Agnus/) (tstamps /5CAE5331/))
(tstamp 5D8302E3))
(comp (ref U34)
(value 74LS373)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS373)
(fields
(field (name Cost) 0.68)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS373N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls373) (part 74LS373) (description "8-bit Latch, 3-state outputs"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5EB19726))
(comp (ref U35)
(value 74LS244)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS244)
(fields
(field (name Cost) 0.62)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS244N)
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib 74ls244) (part 74LS244) (description "8-bit Bus Buffer 3-State outputs"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5EB9A376))
(comp (ref RP201)
(value 68)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R_Pack05_SIP) (description "5 resistor network, parallel topology, SIP package"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5EF1C367))
(comp (ref RP202)
(value 68)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R_Pack05_SIP) (description "5 resistor network, parallel topology, SIP package"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5EF1C6CE))
(comp (ref RP203)
(value 68)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R_Pack05_SIP) (description "5 resistor network, parallel topology, SIP package"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5F5CC2F4))
(comp (ref U32)
(value 74LS139)
(footprint Package_DIP:DIP-16_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS139)
(fields
(field (name Cost) 0.615)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") SN74LS139AN)
(field (name Section) MEMORY))
(libsource (lib 74xx) (part 74LS139) (description "Dual Decoder 1 of 4, Active low outputs"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CF5939E))
(comp (ref JP3A1)
(value Jumper_2_Bridged)
(footprint Raemixx500:Jumper2-Bridged)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) JMP))
(libsource (lib Jumper) (part Jumper_2_Bridged) (description "Jumper, 2-pole, closed/bridged"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D453E68))
(comp (ref JP3B1)
(value Jumper_2_Bridged)
(footprint Raemixx500:Jumper2-Bridged)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Section) JMP))
(libsource (lib Jumper) (part Jumper_2_Bridged) (description "Jumper, 2-pole, closed/bridged"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D4540CC))
(comp (ref R201)
(value 4.7k)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D708549))
(comp (ref R202)
(value 4.7k)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D708798))
(comp (ref U16)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D1C956E))
(comp (ref U17)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D4117A6))
(comp (ref U18)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D42DBCB))
(comp (ref U19)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D42DBD1))
(comp (ref U20)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D805FD5))
(comp (ref U21)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D805FDB))
(comp (ref U22)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D805FE1))
(comp (ref U23)
(value XX4256)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Section) MEMORY))
(libsource (lib XX4256) (part XX4256) (description ""))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5D805FE7))
(comp (ref JP4A1)
(value Jumper_3_Open)
(footprint Raemixx500:Jumper3-Open)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Required) Y)
(field (name Section) JMP))
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5DCD8A02))
(comp (ref JP4B1)
(value Jumper_3_Open)
(footprint Raemixx500:Jumper3-Open)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Required) Y)
(field (name Section) JMP))
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5E08E93D))
(comp (ref C16)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) MEMORY))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CCC91AE))
(comp (ref C17)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) MEMORY))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CD19B3E))
(comp (ref C20)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) MEMORY))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CD69C13))
(comp (ref C18)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) MEMORY))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CF36D58))
(comp (ref C19)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) MEMORY))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5EA8075B/))
(tstamp 5CF36D6A))
(comp (ref U4)
(value DENISE)
(footprint Package_DIP:DIP-48_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Required) Y)
(field (name Section) CUSTOM))
(libsource (lib DENISE) (part DENISE) (description ""))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CBA56DB))
(comp (ref C403)
(value 47p)
(footprint Raemixx500:VariCap)
(datasheet ~)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP))
(libsource (lib Device) (part C_Variable) (description "Variable capacitor"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CBE4324))
(comp (ref U40)
(value 74LS245)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(fields
(field (name Cost) 0.311)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") CD74ACT245E)
(field (name Required) Y)
(field (name Section) VIDEO))
(libsource (lib 74ls245) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CBE8812))
(comp (ref U41)
(value 74LS245)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(fields
(field (name Cost) 0.311)
(field (name "MFG Name") TI)
(field (name "MFG Part Num") CD74ACT245E)
(field (name Required) Y)
(field (name Section) VIDEO))
(libsource (lib 74ls245) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CBF1E4C))
(comp (ref HY1)
(value VIDIOT)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x22_P2.54mm_Vertical)
(datasheet DOCUMENTATION)
(fields
(field (name "MFG Name") SKIP)
(field (name "MFG Part Num") SKIP)
(field (name Required) Y)
(field (name Section) VID))
(libsource (lib VIDIOT) (part VIDIOT) (description "Video DAC"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CC01A68))
(comp (ref RP402)
(value 47)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet ~)
(libsource (lib r_pack05) (part R_Pack05) (description "5 resistor network, parallel topology, DIP package"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CD1046C))
(comp (ref RP403)
(value 47)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet ~)
(libsource (lib r_pack05) (part R_Pack05) (description "5 resistor network, parallel topology, DIP package"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CD10554))
(comp (ref CN9)
(value VIDEO_DB23M)
(footprint Raemixx500:DB_23M)
(datasheet " ~")
(fields
(field (name Required) Y)
(field (name Section) VIDEO))
(libsource (lib db23_male_mountingholes) (part DB23_Male_MountingHoles) (description "25-pin male D-SUB connector, Mounting Hole"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CE70E09))
(comp (ref E405)
(value 10n)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.234)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") DSS1NB32A103Q91A)
(field (name Required) Y))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CE8B2B2))
(comp (ref E403)
(value 10n)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.234)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") DSS1NB32A103Q91A))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CF24BA0))
(comp (ref E404)
(value 10n)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.234)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") DSS1NB32A103Q91A)
(field (name Required) Y))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5CF24C8A))
(comp (ref E402)
(value 150p)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.238)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") "DSS1NB32A151Q91A ")
(field (name Required) ?)
(field (name Section) VIDEO))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D034FA1))
(comp (ref E434)
(value 150p)
(footprint Raemixx500:EMI_Filter_Long)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.238)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") "DSS1NB32A151Q91A ")
(field (name Required) Y)
(field (name Section) VIDEO))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D0EFA81))
(comp (ref R402)
(value 4.7k)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D1737A4))
(comp (ref R403)
(value 4.7k)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D17FD6E))
(comp (ref R404)
(value 4.7k)
(footprint Raemixx500:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) ?))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D17FFDB))
(comp (ref E406)
(value 10n)
(footprint Raemixx500:EMI_Filter_Short)
(datasheet http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb)
(fields
(field (name Cost) 0.234)
(field (name EMI_FILTER_TYPE) W/FERRITE)
(field (name "MFG Name") MURATA)
(field (name "MFG Part Num") DSS1NB32A103Q91A)
(field (name Required) Y))
(libsource (lib Device) (part EMI_Filter_LCL) (description "EMI T-filter (LCL)"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D176766))
(comp (ref C4)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) VIDEO))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D1BC11B))
(comp (ref R406)
(value 4.7)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal)
(datasheet ~)
(fields
(field (name Required) Y)
(field (name Section) VID))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D2C11FC))
(comp (ref C402)
(value 1000u)
(footprint Capacitor_THT:CP_Radial_D12.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name Cost) 0.343)
(field (name "MFG Name") PANASONIC)
(field (name "MFG Part Num") EEUFR1C102)
(field (name Required) Y))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D34A65C))
(comp (ref C40)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) VIDEO))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D38ACBD))
(comp (ref C41)
(value 330n)
(footprint Raemixx500:C_Axial_L6.3mm_D2.5mm_P10.16mm)
(datasheet ~)
(fields
(field (name Cost) 0.078)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C412C334M5U5TA)
(field (name Required) R)
(field (name Section) VIDEO))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Denise & Video Stuff/") (tstamps /5CBA5669/))
(tstamp 5D39B62F))
(comp (ref C401)
(value 1000u)
(footprint Capacitor_THT:CP_Radial_D12.5mm_P5.00mm)
(datasheet ~)