-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject_GCM.net
3234 lines (3234 loc) · 133 KB
/
Project_GCM.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 C:\Users\guill\Desktop\Creation\Github\GCM\Project_GCM.sch)
(date "12.04.2021 10:13:23")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source Project_GCM.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Peripherals/) (tstamps /5A97A24B/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source filePeripherals.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Connector/) (tstamps /5B31C462/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileConnector.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /ClockGenerator/) (tstamps /5B3313A4/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileClockGenerator.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source filePClockGenerator.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /AddressCounter/) (tstamps /5A93FC93/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileAddressCounter.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /MemorySlot1/) (tstamps /5B94DD6C/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileMemorySlot1.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /MemoryController/) (tstamps /5B965978/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileMemoryController.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileAddressExchanger.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /MemorySlot2/) (tstamps /5E0692F0/)
(title_block
(title GCM)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-02-16)
(source fileMemorySlot2.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C3)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B3E1786))
(comp (ref C5)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B3E19DD))
(comp (ref C1)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B465FE1))
(comp (ref R2)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BB21E73))
(comp (ref R1)
(value 523k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BB2227D))
(comp (ref R3)
(value 305k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BB2BA25))
(comp (ref C4)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB3BF41))
(comp (ref J1)
(value Molex_1053102116)
(footprint Connector_Molex:Molex_Nano-Fit_105310-xx08_2x04_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x04_Odd_Even) (description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D05EC0B))
(comp (ref J12)
(value DEBUG_BUSES)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x21_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x21_Odd_Even) (description "Generic connector, double row, 02x21, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3DCAFC))
(comp (ref C15)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D43C6D3))
(comp (ref J7)
(value " 3-641124-6")
(footprint TE_3-641124-6:TE_3-641124-6)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D56C164))
(comp (ref C14)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D589005))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D33001E))
(comp (ref U2)
(value LTC6994xS6-1)
(footprint Package_TO_SOT_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5F72CB19))
(comp (ref U1)
(value LM810)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.ti.com/lit/ds/symlink/lm809.pdf)
(libsource (lib Power_Supervisor) (part LM810) (description "Microprocessor Reset (active-high) Circuit, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5F741CC0))
(comp (ref U5)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7D4A02))
(comp (ref U11)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5F814151))
(comp (ref U3)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8A959B))
(comp (ref U25)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC5A3A3))
(comp (ref C2)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 602BE1AD))
(comp (ref C56)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 602C9002))
(comp (ref C7)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5B41C85C))
(comp (ref C8)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5B41F020))
(comp (ref RN2)
(value 8x10k)
(footprint Resistor_THT:R_Array_SIP9)
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C78C661))
(comp (ref RN3)
(value 8x10k)
(footprint Resistor_THT:R_Array_SIP9)
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C78CC90))
(comp (ref C48)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C7994AC))
(comp (ref C44)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C799628))
(comp (ref C46)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C7996BA))
(comp (ref C42)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C799729))
(comp (ref C47)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C799DA9))
(comp (ref C45)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C799F8A))
(comp (ref C43)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C79A0DC))
(comp (ref C25)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5C79A155))
(comp (ref J2)
(value PP1_receptacle_TE_5-5530843-4)
(footprint TE_5-5530843-4:TE_5-5530843-4)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5D0F5D39))
(comp (ref J4)
(value PP1_receptacle_TE_5-5530843-4)
(footprint TE_5-5530843-4:TE_5-5530843-4)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5D0FB2AA))
(comp (ref J3)
(value PP1_receptacle_TE_5-5530843-4)
(footprint TE_5-5530843-4:TE_5-5530843-4)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5D0FDCD9))
(comp (ref J5)
(value PP1_receptacle_TE_5-5530843-4)
(footprint TE_5-5530843-4:TE_5-5530843-4)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5D1039C0))
(comp (ref U7)
(value 74AHC138)
(footprint Package_SO:SOIC-16W_5.3x10.2mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS138)
(libsource (lib 74xx) (part 74LS138) (description "Decoder 3 to 8 active low outputs"))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5D4DDE08))
(comp (ref U6)
(value CD74AC238)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(libsource (lib Custom) (part CD74AC238) (description ""))
(sheetpath (names /Peripherals/) (tstamps /5A97A24B/))
(tstamp 5F9BBC7E))
(comp (ref C9)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5B0EB326))
(comp (ref C10)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5B0EB41C))
(comp (ref C12)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5C78E49D))
(comp (ref J6)
(value TE_Eurocard_96pole)
(footprint Eurocard_5536475-1:Eurocard_5536475-1_Inv)
(datasheet ~)
(libsource (lib Custom) (part TE_Eurocard_96pole) (description TE))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D390245))
(comp (ref U8)
(value 74AHC244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHC244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D3A7043))
(comp (ref U9)
(value 74AHC244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHC244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D40A164))
(comp (ref C13)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D40A147))
(comp (ref J9)
(value Conn_01x02)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D2CD391))
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5D2E134A))
(comp (ref H1)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5FB10BC7))
(comp (ref H2)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5FB110FA))
(comp (ref H3)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5FB11338))
(comp (ref H4)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 5FB11A74))
(comp (ref C51)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 602EDA53))
(comp (ref C57)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B31C462/))
(tstamp 6033559A))
(comp (ref C6)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5C68BACC))
(comp (ref U4)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5D07B5AA))
(comp (ref X1)
(value ECS-2200BX-500)
(footprint Oscillator:Oscillator_DIP-8)
(datasheet http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf)
(libsource (lib Oscillator) (part CXO_DIP8) (description "Crystal Clock Oscillator, DIP8-style metal package"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5F7511AB))
(comp (ref C11)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5F751FC7))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5F754723))
(comp (ref U26)
(value SN74LV393A)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74lv393a-q1.pdf)
(libsource (lib Custom) (part SN74LV393A) (description "Counter ICs Dual 4-Bit Binary"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDD1821))
(comp (ref U27)
(value SN74LV393A)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74lv393a-q1.pdf)
(libsource (lib Custom) (part SN74LV393A) (description "Counter ICs Dual 4-Bit Binary"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDD314D))
(comp (ref C16)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDD9A6D))
(comp (ref U28)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDE6D83))
(comp (ref U29)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDE8198))
(comp (ref U31)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FDF2439))
(comp (ref C35)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FE18816))
(comp (ref C36)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FE1C01F))
(comp (ref C37)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FE2004F))
(comp (ref C24)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FE2A72F))
(comp (ref U30)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /ClockGenerator/) (tstamps /5B3313A4/))
(tstamp 5FBE13A9))
(comp (ref C38)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D2CB))
(comp (ref U32)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D2F2))
(comp (ref U33)
(value SN74LV393A)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74lv393a-q1.pdf)
(libsource (lib Custom) (part SN74LV393A) (description "Counter ICs Dual 4-Bit Binary"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D330))
(comp (ref U34)
(value SN74LV393A)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74lv393a-q1.pdf)
(libsource (lib Custom) (part SN74LV393A) (description "Counter ICs Dual 4-Bit Binary"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D336))
(comp (ref C39)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D35D))
(comp (ref U35)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D371))
(comp (ref U36)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D377))
(comp (ref U37)
(value CD74AC151)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac151.pdf)
(libsource (lib Custom) (part CD74AC151) (description "Multiplexer 8 to 1"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D39B))
(comp (ref C41)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D3EA))
(comp (ref C49)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D3F6))
(comp (ref C50)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D402))
(comp (ref C40)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /ClockGenerator/PClockGenerator/) (tstamps /5B3313A4/5FB03E55/))
(tstamp 5FB1D41E))
(comp (ref C21)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5BB563B1))
(comp (ref U18)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5F9095CA))
(comp (ref U19)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FB86117))
(comp (ref C22)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBDAF57))
(comp (ref U20)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBDAF6D))
(comp (ref C19)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBF8865))
(comp (ref U16)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBF887B))
(comp (ref C20)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBF8893))
(comp (ref U17)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FBF88A9))
(comp (ref C17)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FC67621))
(comp (ref U13)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FC6762F))
(comp (ref C18)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FC67647))
(comp (ref U14)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /AddressCounter/) (tstamps /5A93FC93/))
(tstamp 5FC67655))
(comp (ref C26)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemorySlot1/) (tstamps /5B94DD6C/))
(tstamp 5D5B8D60))
(comp (ref C27)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemorySlot1/) (tstamps /5B94DD6C/))
(tstamp 5D5B8D61))
(comp (ref J8)
(value MM1_receptacle_5530843-2)
(footprint TE5530843-2:TE_5530843-2)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Odd_Even) (description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /MemorySlot1/) (tstamps /5B94DD6C/))
(tstamp 5D5B8D65))
(comp (ref J10)
(value MM1_addressExtension)
(footprint Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /MemorySlot1/) (tstamps /5B94DD6C/))
(tstamp 5DFEB360))
(comp (ref C28)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D3531F3))
(comp (ref C29)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D37FB51))
(comp (ref RN1)
(value 8x10k)
(footprint Resistor_THT:R_Array_SIP9)
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D445564))
(comp (ref C23)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D5E7959))
(comp (ref C30)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D7576E0))
(comp (ref U12)
(value 74AHC244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHC244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5D268A1D))
(comp (ref U10)
(value 74LVC1G74)
(footprint Package_SO:SSOP-8_2.95x2.8mm_P0.65mm)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74LVC1G74) (description "Single D Flip-Flop, Low-Voltage CMOS"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5F7589E8))
(comp (ref U21)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5FB559CC))
(comp (ref C52)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5FB7C408))
(comp (ref U40)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5FB7C40F))
(comp (ref U15)
(value 74AHCT1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHCT1G04) (description "Single NOT Gate, AHCTMOS"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5FC4FE53))
(comp (ref U41)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 5FCCE315))
(comp (ref U22)
(value 74CBTLV16212)
(footprint Package_SO:TSSOP-56_6.1x14mm_P0.5mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74cbtlv16212.pdf)
(libsource (lib 74xx) (part 74CBTLV16212) (description "Low-voltage 24-bit FET Bus-exchange switch"))
(sheetpath (names /MemoryController/) (tstamps /5B965978/))
(tstamp 60534349))
(comp (ref C31)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5DA9966A))
(comp (ref C32)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5DA99670))
(comp (ref C55)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD3A73E))
(comp (ref U44)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD3A744))
(comp (ref C54)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD406BC))
(comp (ref U43)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD406C2))
(comp (ref C53)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD46D89))
(comp (ref U42)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 5FD46D8F))
(comp (ref U23)
(value 74CBTLV16212)
(footprint Package_SO:TSSOP-56_6.1x14mm_P0.5mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74cbtlv16212.pdf)
(libsource (lib 74xx) (part 74CBTLV16212) (description "Low-voltage 24-bit FET Bus-exchange switch"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 604A6BF3))
(comp (ref U24)
(value 74CBTLV16212)
(footprint Package_SO:TSSOP-56_6.1x14mm_P0.5mm)
(datasheet https://www.ti.com/lit/ds/symlink/sn74cbtlv16212.pdf)
(libsource (lib 74xx) (part 74CBTLV16212) (description "Low-voltage 24-bit FET Bus-exchange switch"))
(sheetpath (names /MemoryController/AddressExchanger/) (tstamps /5B965978/5DA7D21D/))
(tstamp 604EE299))
(comp (ref C33)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemorySlot2/) (tstamps /5E0692F0/))
(tstamp 5BB77E95))
(comp (ref C34)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /MemorySlot2/) (tstamps /5E0692F0/))
(tstamp 5BB77E9C))
(comp (ref J11)
(value MM1_receptacle_5530843-2)
(footprint TE5530843-2:TE_5530843-2)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Odd_Even) (description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /MemorySlot2/) (tstamps /5E0692F0/))
(tstamp 5D0EEF10))
(comp (ref J13)
(value MM1_addressExtension)
(footprint Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /MemorySlot2/) (tstamps /5E0692F0/))
(tstamp 5D5B8D66)))
(libparts
(libpart (lib 74xx) (part 74CBTLV16212)
(description "Low-voltage 24-bit FET Bus-exchange switch")
(docs https://www.ti.com/lit/ds/symlink/sn74cbtlv16212.pdf)
(footprints
(fp SSOP*)
(fp TSSOP*))
(fields
(field (name Reference) U)
(field (name Value) 74CBTLV16212))
(pins
(pin (num 1) (name S0) (type input))
(pin (num 2) (name 1A1) (type BiDi))
(pin (num 3) (name 1A2) (type BiDi))
(pin (num 4) (name 2A1) (type BiDi))
(pin (num 5) (name 2A2) (type BiDi))
(pin (num 6) (name 3A1) (type BiDi))
(pin (num 7) (name 3A2) (type BiDi))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name 4A1) (type BiDi))
(pin (num 10) (name 4A2) (type BiDi))
(pin (num 11) (name 5A1) (type BiDi))
(pin (num 12) (name 5A2) (type BiDi))
(pin (num 13) (name 6A1) (type BiDi))
(pin (num 14) (name 6A2) (type BiDi))
(pin (num 15) (name 7A1) (type BiDi))
(pin (num 16) (name 7A2) (type BiDi))
(pin (num 17) (name VCC) (type power_in))
(pin (num 18) (name 8A1) (type BiDi))
(pin (num 19) (name GND) (type passive))
(pin (num 20) (name 8A2) (type BiDi))
(pin (num 21) (name 9A1) (type BiDi))
(pin (num 22) (name 9A2) (type BiDi))
(pin (num 23) (name 10A1) (type BiDi))
(pin (num 24) (name 10A2) (type BiDi))
(pin (num 25) (name 11A1) (type BiDi))
(pin (num 26) (name 11A2) (type BiDi))
(pin (num 27) (name 12A1) (type BiDi))
(pin (num 28) (name 12A2) (type BiDi))
(pin (num 29) (name 12B2) (type BiDi))
(pin (num 30) (name 12B1) (type BiDi))
(pin (num 31) (name 11B2) (type BiDi))
(pin (num 32) (name 11B1) (type BiDi))
(pin (num 33) (name 10B2) (type BiDi))
(pin (num 34) (name 10B1) (type BiDi))
(pin (num 35) (name 9B2) (type BiDi))
(pin (num 36) (name 9B1) (type BiDi))
(pin (num 37) (name 8B2) (type BiDi))
(pin (num 38) (name GND) (type passive))
(pin (num 39) (name 8B1) (type BiDi))
(pin (num 40) (name 7B2) (type BiDi))
(pin (num 41) (name 7B1) (type BiDi))
(pin (num 42) (name 6B2) (type BiDi))
(pin (num 43) (name 6B1) (type BiDi))
(pin (num 44) (name 5B2) (type BiDi))
(pin (num 45) (name 5B1) (type BiDi))
(pin (num 46) (name 4B2) (type BiDi))
(pin (num 47) (name 4B1) (type BiDi))
(pin (num 48) (name 3B2) (type BiDi))
(pin (num 49) (name GND) (type passive))
(pin (num 50) (name 3B1) (type BiDi))
(pin (num 51) (name 2B2) (type BiDi))
(pin (num 52) (name 2B1) (type BiDi))
(pin (num 53) (name 1B2) (type BiDi))
(pin (num 54) (name 1B1) (type BiDi))
(pin (num 55) (name S2) (type input))