-
Notifications
You must be signed in to change notification settings - Fork 4
/
Pinouts.txt
6525 lines (6525 loc) · 95.6 KB
/
Pinouts.txt
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
$4000
Dual 3-input NOR gate and inverter
14
NC % NC
NC % NC
Input % 1A
Input % 1B
Input % 1C
Output % Out 1
GND % VSS
Input %2A
Output %Out 2
Output %Out 3
Input %3A
Input %3B
Input %3C
VCC %VDD
$4001
Quad 2-input NOR gate
14
Input % 1A
Input % 1B
Output % Out 1
Output % Out 2
Input % 2A
Input % 2B
GND % VSS
Input %3A
Input %3B
Output %3
Output %4
Input %4A
Input %4B
VCC %VDD
$4002
Dual 4-input NOR gates
14
Output % Out 1
Input % 1A
Input % 1B
Input % 1C
Input % 1D
NC % NC
GND % VSS
NC %NC
Input %2D
Input %2C
Input %2B
Input %2A
Output %2
VCC %VDD
$4006
18-Stage Static Shift Register
14
Input % D1
Output % D1+4'
Clock % Clock
Input % D2
Input % D3
Output % D4
GND % VSS
Output %D4+4
Output %D4+5
Output %D3+4
Output %D2+4
Output %D2+5
Output %D1+4
VCC %VDD
$4007
DUAL COMPLIMENTARY PAIR PLUS INVERTER
14
In/Out % Q2 S(P)
Out/In % Q2 D(P)
Input %Q2 Gates
In/Out % Q2 S(N)
Out/In % Q2 D(N)
Input %Q1 Gates
GND % VSS
Out/In %Q1 D(N)
In/Out %Q3 S(N)
Input %Q3 Gates
Out/In %Q3 D(P)
Out/In %Q3 D(N)
In/Out %Q1 S(P)
VCC %VDD
$4008
4-Bit Full Adder with Parallel Carry Out
14
Input % A4
Input % B3
Input % A3
Input % B2
Input % A2
Input % B1
Input % A1
GND % VSS
Input %Carry In
Output %S1
Output %S2
Output %S3
Output %S4
Output %CarryOut
Input %B4
VCC %VDD
$4009
Hex inverters with level shifted outputs
16
Input % VCC
Output % Out 1
Input % 1A
Output % Out 2
Input % 2A
Output % Out 3
Input % 3A
GND % VSS
Input %4A
Output %Out 4
Input %5A
Output %Out 5
NC %2B
Input %6A
Output %Out 6
VCC %VDD
$4010
Hex buffers with level shifted outputs
16
Input % VCC
Output % Out 1
Input % 1A
Output % Out 2
Input % 2A
Output % Out 3
Input % 3A
GND % VSS
Input %4A
Output %Out 4
Input %5A
Output %Out 5
NC %2B
Input %6A
Output %Out 6
VCC %VDD
$40100
32-STAGE STATIC LEFT/RIGHT SHIFT REGISTER
16
NC % NC
Input %ClockInh
Clock % Clock
Output % Sh.Left
NC % NC
Input %Sh.Right
NC % NC
GND % VSS
Input %RC.Cntr
NC %NC
Input %Sh.Right
Output %Sh.Right
Input %L/R Cntr
NC %NC
NC %NC
VCC %VDD
$40101
9-PARITY GENERATOR/CHECKER
14
Input % D1
Input % D2
Input % D3
Input % D4
Input % D9
Output % Odd
GND % VSS
Input %Inhibit
Output %Even
Input %D5
Input %D6
Input %D7
Input %D8
VCC %VDD
$40102
2-DECADE BCD
16
Clock % Clock
Input % Clear'
Input %CarryIn'
Input % J0
Input % J1
Input % J2
Input % J3
GND % VSS
Input %ASync'
Input %J4
Input %J5
Input %J6
Input %J7
Output %Car.Out'
Input %Sync'
VCC %VDD
$40103
8-BIT BINARY
16
Clock % Clock
Input % Clear'
Input %CarryIn'
Input % J0
Input % J1
Input % J2
Input % J3
GND % VSS
Input %ASync'
Input %J4
Input %J5
Input %J6
Input %J7
Output %Car.Out'
Input %Sync'
VCC %VDD
$40104
4-BIT UNIVERSAL BIDIRECTIONAL SHIFT REGISTER
16
Input % En. Out
Input %Sh.Right
Input % D0
Input % D1
Input % D2
Input % D3
Input % Sh.Left
GND % VSS
Input %Mode S0
Input %Mode S1
Clock %Clock
Output %Q3
Output %Q2
Output %Q1
Output %Q0
VCC %VDD
$40105
FIFO REGISTER 4-BITS WIDE BY 16-BITS LONG
16
Input % 3-State
Input % Data In
Input %Shift In
Input % D0
Input % D1
Input % D2
Input % D3
GND % VSS
Input %Reset
Output %Q3
Output %Q2
Output %Q1
Output %Q0
Output %Data Out
Output %ShiftOut
VCC %VDD
$40106
Hex inverters with schmitt-trigger inputs
14
Input % 1A
Output % A'
Input % 1B
Output % B'
Input % 1C
Output % C'
GND % VSS
Output %D'
Input %1D
Output %E'
Input %1E
Output %F'
Input %1F
VCC %VDD
$40107
DUAL 2-INPUT NAND BUFFER/DRIVER
14
NC % NC
NC % NC
Input % A
Input % B
Output % C'
NC % NC
GND % VSS
NC %NC
Output %F'
Input %E
Input %D
NC %NC
NC %NC
VCC %VDD
$40108
4-BY-4 MULTIPORT REGISTER
24
Output % Q3B
Output % Q2B
Input %3-Stat.A
Output % Q0A
Output % Q1A
Output % Q2A
Output % Q3A
Input % Write 0
Input % Write 1
Input % Read 1B
Input % Read 0B
GND % VSS
Input %Read 0A
Input %Read 1A
Input %Write En
Clock %Clock
Input %D3
Input %D2
Input %D1
Input %D0
Input %3-Stat.B
Output %Q0B
Output %Q1B
VCC %VDD
$40109
QUAD LOW TO HIGH VOLTAGE LEVEL SHIFTER
16
Input %
Input % En 1
Input % In 1
Output % Out 1
Output % Out 2
Input % In 2
Input % En 2
GND % VSS
Input %En 3
Input %In 3
Output %Out 3
NC %NC
Output %Out 4
Input %In 4
Input %En 4
VCC %VDD
$4011
Quad 2-input NAND gates
14
Input % 1A
Input % 1B
Output % 1
Output % 2
Input % 2A
Input % 2B
GND % VSS
Input %3A
Input %3B
Output %3
Output %4
Input %4A
Input %4B
VCC %VDD
$4012
Dual 4-input NAND gates
14
Output % 1
Input % 1A
Input % 1B
Input % 1C
Input % 1D
NC % NC
GND % VSS
NC %NC
Input %2D
Input %2C
Input %2B
Input %2A
Output %2
VCC %VDD
$4013
Dual D flip-flop with set and reset
14
Output % Q1
Output % 1Q
Input % Clock 1
Input % Reset 1
Input % D1
Input % Set1
GND % VSS
Input %Set 2
Input %D2
Input %Reset 2
Input %Clock 2
Output %2Q
Output %Q2
VCC %VDD
$4014
8-Stage Static Shift registers
16
Input % P8
Output % Q8
Output % Q14
Input % P4
Input % P3
Input % P2
Input % P1
GND % VSS
Input %Par/Ser
Clock %Clock
Input %Serial
Output %Q7
Input %P5
Input %P6
Input %P7
VCC %VDD
$4015
Dual 4-bit serial-in parallel-out shift register with asynchronous reset
16
Clock % Clock 2
Output % 4B
Output % 3A
Output % 2A
Output % 1A
Input % Reset 1
Input % D1
GND % VSS
Clock %Clock 1
Output %4A
Output %3B
Output %2B
Output %1B
Input %Reset 2
Input %D2
VCC %VDD
$4016
Quad analog switches
14
Input % 1A
Output % Out A
Input % 1B
Output % Out B
Input %Contrl B
Input %Contrl C
GND % VSS
Input %1C
Output %Out C
Output %Out D
Input %1D
Input %Contrl D
Input %Contrl A
VCC %VDD
$4017
Decade counter (5-stage Johnson counter) with 10-output decoder
16
Output % Q5
Output % Q1
Output % Q0
Output % Q2
Output % Q6
Output % Q7
Output % Q3
GND % VSS
Output %Q8
Output %Q4
Output %Q9
Output %CarryOut
Input %Inhibit
Clock %Clock
Input %Reset
VCC %VDD
$4018
Presettable divide-by-N counter
16
Input % Data
Input % J1
Input % J2
Output % Q2
Output % Q1
Output % Q3
Input % J3
GND % VSS
Input %J4
Input %Enable
Output %Q4
Input %J5
Output %Q5
Clock %Clock
Input %Reset
VCC %VDD
$4019
8-to-4 line noninverting data selector/multiplexer with OR function
16
Input % B4
Input % A3
Input % B3
Input % A2
Input % B2
Input % A1
Input % B1
GND % VSS
Input %Ka
Output %D1
Output %D2
Output %D3
Output %D4
Input %Kb
Input %A4
VCC %VDD
$4020
14-bit asynchronous binary counter with reset
16
Output % Q12
Output % Q13
Output % Q14
Output % Q6
Output % Q5
Output % Q7
Output % Q4
GND % VSS
Output %Q1
Clock %Clock
Input %Reset
Output %Q9
Output %Q8
Output %Q10
Output %Q11
VCC %VDD
$4021
8-Stage Static Shift registers
16
Input % Para.8
Output % Q8
Output % Q14
Input % Para.4
Input % Para.3
Input % Para.2
Input % Para.1
GND % VSS
Input %Par/Ser
Clock %Clock
Input %Serial
Output %Q7
Input %Para.5
Input %Para.6
Input %Para.7
VCC %VDD
$4022
Octal counter (4-stage Johnson counter) with 8-output decoder
16
Output % Q1
Output % Q0
Output % Q2
Output % Q5
Output % Q6
NC % NC
Output % Q3
GND % VSS
NC %NC
Output %Q7
Output %Q4
Output %CarryOut
Input %Inhibit
Clock %Clock
Input %Reset
VCC %VDD
$4023
Triple 3-input NAND gates
14
Input % 2A
Input % 2B
Input % 1A
Input % 1B
Input % 1C
Output % Out 1
GND % VSS
Input %2C
Output %Out 2
Output %Out 3
Input %3A
Input %3B
Input %3C
VCC %VDD
$4024
7-bit asynchronous binary counter with reset
14
Clock % Clock
Input % Reset
Output % Q7
Output % Q6
Output % Q5
Output % Q4
GND % VSS
NC %NC
Output %Q3
NC %NC
Output %Q2
Output %Q1
NC %NC
VCC %VDD
$4025
Triple 3-input NOR gates
14
Input % 2A
Input % 2B
Input % 1A
Input % 1B
Input % 1C
Output % Out 1
GND % VSS
Input %2C
Output %Out 2
Output %Out 3
Input %3A
Input %3B
Input %3C
VCC %VDD
$4026
Decade counter with decoded 7-segment display outputs and display enable
16
Clock % Clock
Input % Inhibit
Input % En. In
Output % En.Out
Output %CarryOut
Output % f
Output % g
GND % VSS
Output %d
Output %a
Output %e
Output %b
Output %c
Output %Ung.C.Seg
Input %Reset
VCC %VDD
$4027
Dual J-K flip-flops with set and reset
16
Output % Out 2
Output %In.Out 2
Clock % Clock 1
Input % Reset 2
Input % K2
Input % J2
Input % Set 2
GND % VSS
Input %Set 1
Input %J1
Input %K1
Input %Reset 1
Clock %Clock 2
Output %In.Out 1
Output %Out 1
VCC %VDD
$4028
4-bit BCD to 10-output decoder (can be used as 3-bit binary to 8-output decoder)
16
Output % Q4
Output % Q2
Output % Q0
Output % Q7
Output % Q9
Output % Q5
Output % Q6
GND % VSS
Output %Q8
Input %A
Input %D
Input %C
Input %B
Output %Q1
Output %Q3
VCC %VDD
$4029
Presettable up/down counter, binary or BCD-decade
16
Input % Pre.En
Output % Q4
Input % J4
Input % J1
Input %Carry In
Output % Q1
Input %CarryOut
GND % VSS
Input %Bin/Dec
Input %Up/Down
Output %Q2
Input %J2
Input %J3
Output %Q3
Clock %Clock
VCC %VDD
$4030
Quad 2-input XOR gates
14
Input % 1A
Input % 1B
Output % Out 1
Output % Out 2
Input % 2A
Input % 2B
GND % VSS
Input %3A
Input %3B
Output %Out 3
Output %Out 4
Input %4A
Input %4B
VCC %VDD
$4031
64-stage shift register
16
Input %DataIn 2
Clock % Clock
NC % NC
NC % NC
Output %delay Q1
Output % Q1
Output % Q1'
GND % Vss
Output %Del.Clock
Input %Mode
NC %NC
NC %NC
NC %NC
NC %NC
Input %DataIn 1
VCC %VDD
$4032
Triple serial adder
16
Output % S3
Input % 3'
Input % CL
Output % S2
Input % 2'
Input %CarryRes
Input % 1'
GND % VSS
Output %S1
Input %A1
Input %B1
Input %B2
Input %A2
Input %B3
Input %A3
VCC %VDD
$4033
Decade counter with decoded 7-segment display outputs and Ripple Blanking
16
Clock % Clock
Input % Inhibit
Input %Blank In
Output %BlankOut
Output %CarryOut
Output % f
Output % g
GND % VSS
Output %d
Output %a
Output %e
Output %b
Output %c
Input %Lamp
NC %NC
VCC %VDD
$4034
8-stage bidirectional parallel/serial input/output register
24
In/Out % DB8
In/Out % DB7
In/Out % DB6
In/Out % DB5
In/Out % DB4
In/Out % DB3
In/Out % DB2
In/Out % DB1
Input %Enable A
Input %SerialIn
Input % A/B
GND % VSS
Input %P/S
Input %A/S
Clock %Clock
Out/In %DA1
Out/In %DA2
Out/In %DA3
Out/In %DA4
Out/In %DA5
Out/In %DA6
Out/In %DA7
Out/In %DA8
VCC %VDD
$4035
4-stage parallel-in/parallel-out shift register
16
Output %Q1/InvQ1
Input %True/Com
Input % K'
Input % J
Input % Reset
Clock % Clock
Input % P/S
GND % VSS
Input %PI1
Input %PI2
Input %PI3
Input %PI4
Output %Q4/Q4'
Output %Q3/Q3'
Output %Q2/Q2'
VCC %VDD
$4037
Triple AND/OR Bi-Phase Pair
14
VCC %VCC
Input % B
Input % C1
Input % A
Input % C2
Input % C3
GND % VSS
Output %D3
Output %E3
Output %D2
Output %E2
Output %E1
Output %D1
VCC %VDD
$4038
Triple Serial Adder Negative Logic
16
Output % Sum 3
Input % 3'
Input % CL
Output % Sum 2
Input % 2'
Input %CarryRes
Input % 1'
GND % VSS
Output %Sum 1
Input %A1
Input %B1
Input %B2
Input %A2
Input %B3
Input %A3
VCC %VDD
$4040
12-bit asynchronous binary counter with reset
16
Output % Q12
Output % Q6
Output % Q5
Output % Q7
Output % Q4
Output % Q3
Output % Q2
GND % VSS
Output %Q1
Clock %Clock
Input %Reset
Output %Q9
Output %Q8
Output %Q10
Output %Q11
VCC %VDD
$4041
Quad True/Complement buffer/inverter (2 outputs per gate) (4 times standard "B" drive)
14
Output % QA
Output % QA'
Input % A
Output % QB
Output % QB'
Input % B
GND % VSS
Output %QC
Output %QC'
Input %C
Output %QD
Output %QD'
Input %D
VCC %VDD
$4042
4-bit transparent latch with selectable latch enable polarity and complementary outputs
16
Output % Q4
Output % Q1
Output % Q1'
Input % D1
Clock % Clock
Output %Polarity
Input % D2
GND % VSS
Output %Q2'
Output %Q2
Output %Q3
Output %Q3'
Input %D3
Input %D4
Output %Q4'
VCC %VDD
$4043
Quad 3-State NOR R/S latch
16
Output % Q4
Output % Q1
Input % R1
Input % S1
Input % Enable
Input % S2
Input % R2
GND % VSS
Output %Q2
Output %Q3
Input %R3
Input %S3
NC %NC
Input %S4
Input %R4
VCC %VDD
$4044
Quad 3-State NOR R/S latch
16
Output % Q4
Output % Q1
Input % R1
Input % S1
Input % Enable
Input % S2
Input % R2
GND % VSS
Output %Q2
Output %Q3
Input %R3
Input %S3
NC %NC
Input %S4
Input %R4
VCC %VDD
$4045
21-Stage Counter
16
Input % SP
Input % SN
VCC % VDD
NC % NC
NC % NC
NC % NC
Output % Y
Output % Y+D
NC %NC
NC %NC
NC %NC
NC %NC
NC %NC
GND %VSS
Clock %Phi0
Clock %Phi1
$4046
Micropower Phase-Locked Loop
16
Output %Phase.P
Output %Phase.C1
Input % Comp.In
Output % VCO Out
Input % Inhibit
Input % Cx
Input % Cx
GND % VSS
Input %VCO In
Output %Dmod.Out
GND %R2
GND %R1
Output %Phase.C2
Input %SignalIn
GND %Zener
VCC %VDD
$4047
Low-Power Monostable/Astable Multivibrator
14
Input % Cx
Input % Rx
Input % RCx
Input %Astable'
Input % Astable
Input %-Trigger
GND % VSS
Input %+Trigger
Input %Ex.Reset
Output %Q1
Output %Q1'
Input %Rtrigger
Output %OSC Out
VCC %VDD
$4048
Multi-Function Expendable 8-lnput Gate
16
Output % Out
Input % Kd
Input % H
Input % G
Input % F
Input % E
Input % Kb
GND % VSS
Input %Kc
Input %Ka
Input %D
Input %C