-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSMD500.net
9488 lines (9488 loc) · 377 KB
/
SMD500.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 /media/FCS/Electronics/Kicad/A500/SMD500/SMD500.sch)
(date "Wed 26 Jun 2019 18:23:58 AEST")
(tool "Eeschema 5.1.2-f72e74a~84~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source SMD500.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R101)
(value 27)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4BE594))
(comp (ref R102)
(value 27)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D102367))
(comp (ref U5)
(value 5719_Gary)
(footprint Package_DIP:DIP-48_W15.24mm_LongPads)
(libsource (lib AmigaCustomChips) (part 5719_Gary) (description "MOS 5719 Gary"))
(sheetpath (names /) (tstamps /))
(tstamp 5D53E3BE))
(comp (ref U13)
(value SN74LS373DW)
(footprint A500plus:SOIC127P1030X265-20N)
(datasheet http://docs-emea.rs-online.com/webdocs/0b85/0900766b80b85e6b.pdf)
(fields
(field (name Description) "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC")
(field (name Height) 2.65)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) SN74LS373DW)
(field (name "Mouser Part Number") 595-SN74LS373DW)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-SN74LS373DW))
(libsource (lib A500Components) (part SN74LS373DW) (description "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC"))
(sheetpath (names /) (tstamps /))
(tstamp 5D610F1D))
(comp (ref U11)
(value SN74LS373DW)
(footprint A500plus:SOIC127P1030X265-20N)
(datasheet http://docs-emea.rs-online.com/webdocs/0b85/0900766b80b85e6b.pdf)
(fields
(field (name Description) "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC")
(field (name Height) 2.65)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) SN74LS373DW)
(field (name "Mouser Part Number") 595-SN74LS373DW)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-SN74LS373DW))
(libsource (lib A500Components) (part SN74LS373DW) (description "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC"))
(sheetpath (names /) (tstamps /))
(tstamp 5D628CE0))
(comp (ref R111)
(value 68)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6A53CE))
(comp (ref R112)
(value 68)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6A7966))
(comp (ref R113)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6A821C))
(comp (ref R103)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D86C355))
(comp (ref R104)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D86CB76))
(comp (ref R105)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D86D27C))
(comp (ref R114)
(value 68)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D024266))
(comp (ref R107)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2B6D14))
(comp (ref R106)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2B74B8))
(comp (ref U33)
(value SN74F258D)
(footprint A500plus:SOIC127P600X175-16N)
(datasheet http://www.ti.com/lit/gpn/SN74F258)
(fields
(field (name Description) "Quadruple 2-Line To 1-Line Data Selectors/Multiplexers With 3-State Outputs")
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) SN74F258D)
(field (name "Mouser Part Number") 595-SN74F258D)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-SN74F258D))
(libsource (lib A500Components) (part SN74F258D) (description "Quadruple 2-Line To 1-Line Data Selectors/Multiplexers With 3-State Outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4E834C))
(comp (ref FB102)
(value 150R@100MHz)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2D2896))
(comp (ref FB101)
(value 68R@100MHz)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2F8CB6))
(comp (ref E666)
(value "22 pF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D692284))
(comp (ref U2.1)
(value 8375_FatAgnus2MB)
(footprint A500plus:PLCC-84_THT-Socket)
(libsource (lib AmigaCustomChips) (part 8375_FatAgnus2MB) (description "MOS 8375 Fat Agnus ECS"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5253B7))
(comp (ref U34)
(value SN74LS373DW)
(footprint A500plus:SOIC127P1030X265-20N)
(datasheet http://docs-emea.rs-online.com/webdocs/0b85/0900766b80b85e6b.pdf)
(fields
(field (name Description) "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC")
(field (name Height) 2.65)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) SN74LS373DW)
(field (name "Mouser Part Number") 595-SN74LS373DW)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-SN74LS373DW))
(libsource (lib A500Components) (part SN74LS373DW) (description "SN74LS373DW, Octal D Type Latch Transparent 3 State 5V 20-Pin SOIC"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB06FCE))
(comp (ref U35)
(value N74F244D)
(footprint A500plus:SOIC127P1032X265-20N)
(datasheet http://docs-emea.rs-online.com/webdocs/002f/0900766b8002f0b2.pdf)
(fields
(field (name Description) "N74F244D, 8-Bit Buffer, Line Driver, F, 3-State Non-Inverting 4.5 5.5 V 20-Pin SOIC")
(field (name Height) 2.65)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) N74F244D)
(field (name "RS Part Number") 1819300)
(field (name "RS Price/Stock") https://uk.rs-online.com/web/p/products/1819300))
(libsource (lib A500Components) (part N74F244D) (description "N74F244D, 8-Bit Buffer, Line Driver, F, 3-State Non-Inverting 4.5 5.5 V 20-Pin SOIC"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB19A70))
(comp (ref U32)
(value MC74AC139DR2G)
(footprint A500plus:MC74AC139DR2G)
(fields
(field (name Field4) OPTIONAL))
(libsource (lib A500Components) (part MC74AC139DR2G) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CFA4D8F))
(comp (ref R202)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61B3CBF6))
(comp (ref R201)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61B44C2F))
(comp (ref RP201.5)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61FF20A9))
(comp (ref RP203.5)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62D0B895))
(comp (ref U16)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6383BFFB))
(comp (ref U20)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6383D7D7))
(comp (ref U17)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 638A9B3D))
(comp (ref U21)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6391566F))
(comp (ref U18)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6398115D))
(comp (ref U22)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 639ECE9A))
(comp (ref U19)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63A59275))
(comp (ref U23)
(value HYB514256B)
(footprint Package_DIP:DIP-20_W7.62mm_LongPads)
(libsource (lib A500Components) (part HYB514256B) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63AC4CC0))
(comp (ref C23)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 63F8A0A7))
(comp (ref C22)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 640D0F26))
(comp (ref C21)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 641AADAD))
(comp (ref C17)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 64306DAB))
(comp (ref C16)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 643E6DE2))
(comp (ref C403)
(value "47 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C0365))
(comp (ref U40)
(value SN74HCT245DWR)
(footprint A500plus:SOIC127P1030X265-20N)
(fields
(field (name Field4) Unavailable)
(field (name Field5) None)
(field (name Field6) "Octal Bus Transceivers With 3-State Outputs 20-SOIC -40 to 85")
(field (name Field7) "Texas Instruments")
(field (name Field8) "SOIC-20 Texas Instruments"))
(libsource (lib A500Components) (part SN74HCT245DWR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5ECF9A05))
(comp (ref U41)
(value SN74HCT245DWR)
(footprint A500plus:SOIC127P1030X265-20N)
(fields
(field (name Field4) Unavailable)
(field (name Field5) None)
(field (name Field6) "Octal Bus Transceivers With 3-State Outputs 20-SOIC -40 to 85")
(field (name Field7) "Texas Instruments")
(field (name Field8) "SOIC-20 Texas Instruments"))
(libsource (lib A500Components) (part SN74HCT245DWR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F35EBE9))
(comp (ref HY1)
(value VIDEOHYBRID)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x22_P2.54mm_Vertical)
(libsource (lib AmigaCustomChips) (part VIDEOHYBRID) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D8679F9))
(comp (ref RP403.2)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E372C23))
(comp (ref RP402.1)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E373D49))
(comp (ref RP403.5)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E61D61E))
(comp (ref JP11)
(value SolderJumper_3_Bridged1-2)
(footprint Jumper:SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_3_Bridged12) (description "3-pole Solder Jumper, pins 1+2 closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC3F744))
(comp (ref E435)
(value FB)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F4C8D21))
(comp (ref R409)
(value 150R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBC6B9B))
(comp (ref CN9)
(value DB23)
(footprint A500plus:DSUB-23_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm)
(datasheet " ~")
(fields
(field (name Field4) RGB))
(libsource (lib A500Components) (part DB23_Male_MountingHoles) (description "25-pin male D-SUB connector, Mounting Hole"))
(sheetpath (names /) (tstamps /))
(tstamp 6001324B))
(comp (ref E431)
(value FB200R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6001A5D0))
(comp (ref E432)
(value FB200R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60189725))
(comp (ref E433)
(value FB200R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6023E54F))
(comp (ref RP402.2)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60750053))
(comp (ref RP402.3)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60A5AA38))
(comp (ref RP402.4)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B14A90))
(comp (ref RP402.5)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60E00D62))
(comp (ref RP403.3)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6225D42F))
(comp (ref RP403.4)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62323475))
(comp (ref RP403.1)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62E3179C))
(comp (ref R402)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 627D2D91))
(comp (ref R403)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6317464E))
(comp (ref R404)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6324034B))
(comp (ref U4)
(value 8373_DeniseECS)
(footprint Package_DIP:DIP-48_W15.24mm_LongPads)
(libsource (lib AmigaCustomChips) (part 8373_DeniseECS) (description "MOS 8373 Denise ECS"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1DCA9F))
(comp (ref C4)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2C795F))
(comp (ref C40)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E74FBF7))
(comp (ref C402)
(value "1000 uF")
(footprint A500plus:CAPAE1350X1400N)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EBD6491))
(comp (ref C41)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6ED06C))
(comp (ref C401)
(value "1000 uF")
(footprint A500plus:CAPAE1350X1400N)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D028D27))
(comp (ref U37)
(value 74LS32)
(footprint A500plus:SN74LS32NSR)
(datasheet http://www.ti.com/lit/gpn/sn74LS32)
(libsource (lib A500Components) (part 74LS32) (description "Quad 2-input OR"))
(sheetpath (names /) (tstamps /))
(tstamp 5D92D09F))
(comp (ref U14)
(value TL084)
(footprint A500plus:SOIC127P600X175-14N)
(datasheet http://www.ti.com/lit/ds/symlink/tl081.pdf)
(libsource (lib Amplifier_Operational) (part TL084) (description "Quad JFET-Input Operational Amplifiers, DIP-14/SOIC-14/SSOP-14"))
(sheetpath (names /) (tstamps /))
(tstamp 5F89D0B4))
(comp (ref R302)
(value 10R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FAC6F49))
(comp (ref R301)
(value 10R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBC2A76))
(comp (ref C301)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 601A3070))
(comp (ref C303)
(value "22 uF")
(footprint Capacitor_SMD:CP_Elec_6.3x5.3)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 601A406A))
(comp (ref C302)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 602A3E4F))
(comp (ref C304)
(value "22 uF")
(footprint Capacitor_SMD:CP_Elec_6.3x5.3)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 602A3E55))
(comp (ref U3)
(value 8364_Paula)
(footprint Package_DIP:DIP-48_W15.24mm_LongPads)
(libsource (lib AmigaCustomChips) (part 8364_Paula) (description "MOS 8364 Paula"))
(sheetpath (names /) (tstamps /))
(tstamp 612C45B8))
(comp (ref C3)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 616DEF6A))
(comp (ref C307)
(value "1000 uF")
(footprint A500plus:CAPAE1350X1400N)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 616DEF70))
(comp (ref R303)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61C08FF9))
(comp (ref C306)
(value "10 uF")
(footprint Capacitor_SMD:CP_Elec_4x5.7)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6235E174))
(comp (ref C305)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6235E16E))
(comp (ref R304)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61E1FD98))
(comp (ref FB802)
(value FB)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6890EFF6))
(comp (ref R305)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6903A72E))
(comp (ref U38)
(value MAX1488ECSD+)
(footprint A500plus:SOIC127P600X175-14N)
(datasheet http://docs-emea.rs-online.com/webdocs/078a/0900766b8078aedb.pdf)
(fields
(field (name Description) "MAX1488ECSD+, Quad EIA/TIA-232, EIA/TIA/RS-562, ITU-V.28, RS-232, Line Transmitter, 14-Pin SOIC")
(field (name Height) 1.75)
(field (name Manufacturer_Name) "Maxim Integrated")
(field (name Manufacturer_Part_Number) MAX1488ECSD+)
(field (name "Mouser Part Number") 700-MAX1488ECSD)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=700-MAX1488ECSD)
(field (name "RS Part Number") 5403072P)
(field (name "RS Price/Stock") http://uk.rs-online.com/web/p/products/5403072P))
(libsource (lib A500Components) (part MAX1488ECSD+) (description "MAX1488ECSD+, Quad EIA/TIA-232, EIA/TIA/RS-562, ITU-V.28, RS-232, Line Transmitter, 14-Pin SOIC"))
(sheetpath (names /) (tstamps /))
(tstamp 69D975E7))
(comp (ref R306)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6A279616))
(comp (ref R307)
(value 2.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6A3ADE00))
(comp (ref R308)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6AD54E4E))
(comp (ref C308)
(value "0.01 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6B83CFB8))
(comp (ref R339)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5CEEB1))
(comp (ref JP10.1)
(value SolderJumper_2_Bridged)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Bridged) (description "Solder Jumper, 2-pole, closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0DA735))
(comp (ref R331)
(value 360R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E86FA61))
(comp (ref C331)
(value "0.1 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E870B3F))
(comp (ref R321)
(value 360R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E875D43))
(comp (ref C321)
(value "0.1 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E875D49))
(comp (ref R322)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F3CD182))
(comp (ref Q331)
(value PMBF4391)
(footprint A500plus:PMBF4391)
(libsource (lib A500Components) (part PMBF4391) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F66284A))
(comp (ref Q321)
(value PMBF4391)
(footprint A500plus:PMBF4391)
(libsource (lib A500Components) (part PMBF4391) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F66E646))
(comp (ref R323)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA66E54))
(comp (ref R333)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBB0259))
(comp (ref R336)
(value 470K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60376F3F))
(comp (ref R326)
(value 470K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 606120B6))
(comp (ref C322)
(value "6800 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6138FF18))
(comp (ref C332)
(value "6800 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6179863D))
(comp (ref C325)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61D22463))
(comp (ref C324)
(value "22 uF")
(footprint Capacitor_SMD:CP_Elec_6.3x5.3)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61E7CE39))
(comp (ref C335)
(value "0.33 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62297670))
(comp (ref C334)
(value "22 uF")
(footprint Capacitor_SMD:CP_Elec_6.3x5.3)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62297676))
(comp (ref R332)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F516DB7))
(comp (ref R334)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62EDB650))
(comp (ref R324)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6319E60B))
(comp (ref JP10.2)
(value SolderJumper_2_Bridged)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Bridged) (description "Solder Jumper, 2-pole, closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 63720B6E))
(comp (ref R325)
(value 390R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63F8035C))
(comp (ref CN4)
(value "PJRAN1X1U02AUX(WHITE)")
(footprint Gary_Collection:PJRAN1X1U03AUX)
(datasheet https://componentsearchengine.com/Datasheets/1/PJRAN1X1U03AUX.pdf)
(fields
(field (name Description) "RCA Phono Connectors 1 POS RA PHONO JACK")
(field (name Field10) "LEFT AUDIO")
(field (name Height) 13)
(field (name Manufacturer_Name) Switchcraft)
(field (name Manufacturer_Part_Number) PJRAN1X1U03AUX)
(field (name "Mouser Part Number") 502-PJRAN1X1U03AUX)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=502-PJRAN1X1U03AUX))
(libsource (lib A500Components) (part "PJRAN1X1U02AUX(WHITE)") (description "RCA Phono Connectors 1 POS RA PHONO JACK (WHITE)"))
(sheetpath (names /) (tstamps /))
(tstamp 64BF9B86))
(comp (ref CN3)
(value "PJRAN1X1U03AUX(RED)")
(footprint Gary_Collection:PJRAN1X1U03AUX)
(datasheet https://componentsearchengine.com/Datasheets/1/PJRAN1X1U03AUX.pdf)
(fields
(field (name Description) "RCA Phono Connectors 1 POS RA PHONO JACK")
(field (name Field10) "RIGHT AUDIO")
(field (name Height) 13)
(field (name Manufacturer_Name) Switchcraft)
(field (name Manufacturer_Part_Number) PJRAN1X1U03AUX)
(field (name "Mouser Part Number") 502-PJRAN1X1U03AUX)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=502-PJRAN1X1U03AUX))
(libsource (lib A500Components) (part "PJRAN1X1U03AUX(RED)") (description "RCA Phono Connectors 1 POS RA PHONO JACK (RED)"))
(sheetpath (names /) (tstamps /))
(tstamp 64BFB375))
(comp (ref R335)
(value 390R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 652F1A0A))
(comp (ref C312)
(value "0.047 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50D47C))
(comp (ref C311)
(value "0.047 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D942611))
(comp (ref C314)
(value "0.047 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAA7C70))
(comp (ref C313)
(value "0.047 uF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DC0E4D1))
(comp (ref C421)
(value "470 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E443D3D))
(comp (ref C423)
(value "470 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E44AA47))
(comp (ref C422)
(value "470 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C4B4C))
(comp (ref JP8)
(value SolderJumper_3_Bridged12)
(footprint Jumper:SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels)
(datasheet ~)
(libsource (lib A500Components) (part SolderJumper_3_Bridged12) (description "3-pole Solder Jumper, pins 1+2 closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 632C0572))
(comp (ref C323)
(value "3900 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 66E1152E))
(comp (ref C333)
(value "3900 pF")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 674D6DED))
(comp (ref U15)
(value SN74LS157DR)
(footprint A500plus:SN74LS157DR)
(libsource (lib A500Components) (part SN74LS157DR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 67F0D405))
(comp (ref U7)
(value 8520_CIA)
(footprint Package_DIP:DIP-40_W15.24mm_LongPads)
(libsource (lib AmigaCustomChips) (part 8520_CIA) (description "MOS 8520 CIA"))
(sheetpath (names /) (tstamps /))
(tstamp 6328BDB1))
(comp (ref U8)
(value 8520_CIA)
(footprint Package_DIP:DIP-40_W15.24mm_LongPads)
(libsource (lib AmigaCustomChips) (part 8520_CIA) (description "MOS 8520 CIA"))
(sheetpath (names /) (tstamps /))
(tstamp 6328F23C))
(comp (ref R109)
(value 68R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63B4ABD1))
(comp (ref RP501.1)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))