forked from KiCad/kicad-symbols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
74xx.dcm
1329 lines (1329 loc) · 26.1 KB
/
74xx.dcm
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
EESchema-DOCLIB Version 2.0
#
$CMP 7400
D quad 2-input NAND gate
K TTL nand 2-input
F http://www.ti.com/lit/gpn/sn7400
$ENDCMP
#
$CMP 7402
D quad 2-input NOR gate
K TTL Nor2
F http://www.ti.com/lit/gpn/sn7402
$ENDCMP
#
$CMP 74469
D 8-bit synchronous up/down counter, parallel load and hold capability (obsolete)
K counter
F http://www.ti.com/lit/gpn/sn74469
$ENDCMP
#
$CMP 74AHC04
D Hex Inverter
K AHCMOS not inv
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT04.pdf
$ENDCMP
#
$CMP 74AHC244
D 8-bit Buffer/Line Driver 3-state
K AHCMOS BUFFER 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf
$ENDCMP
#
$CMP 74AHC273
D 8-bit D Flip-Flop, reset
K AHCMOS DFF DFF8
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf
$ENDCMP
#
$CMP 74AHC374
D 8-bit Register, 3-state outputs
K AHCMOS DFF DFF8 REG 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT374.pdf
$ENDCMP
#
$CMP 74AHC595
D 8-bit serial in/out Shift Register 3-State Outputs
K AHCMOS SR 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT595.pdf
$ENDCMP
#
$CMP 74AHCT04
D Hex Inverter
K AHCTMOS not inv
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT04.pdf
$ENDCMP
#
$CMP 74AHCT123
D Dual retriggerable monostable multivibrator
K TTL monostable, multivibrator
F http://www.ti.com/lit/gpn/sn74ahct123a
$ENDCMP
#
$CMP 74AHCT244
D 8-bit Buffer/Line Driver 3-state
K AHCTMOS BUFFER 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf
$ENDCMP
#
$CMP 74AHCT273
D 8-bit D Flip-Flop, reset
K AHCTMOS DFF DFF8
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf
$ENDCMP
#
$CMP 74AHCT374
D 8-bit Register, 3-state outputs
K AHCTMOS DFF DFF8 REG 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT374.pdf
$ENDCMP
#
$CMP 74AHCT595
D 8-bit serial in/out Shift Register 3-State Outputs
K AHCTMOS SR 3State
F https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT595.pdf
$ENDCMP
#
$CMP 74CBTLV16212
D Low-voltage 24-bit FET Bus-exchange switch
K bus
F https://www.ti.com/lit/ds/symlink/sn74cbtlv16212.pdf
$ENDCMP
#
$CMP 74CBTLV3257
D Quad 1:2 FET Multiplexer/Demultiplexer, Low-Voltage
K mux demux low-voltage
F http://www.ti.com/lit/ds/symlink/sn74cbtlv3257.pdf
$ENDCMP
#
$CMP 74CBTLV3861
D Low-voltage 10-bit FET Bus switch
K bus
F http://www.ti.com/lit/gpn/sn74cbtlv3861
$ENDCMP
#
$CMP 74HC00
D quad 2-input NAND gate
K HCMOS nand 2-input
F http://www.ti.com/lit/gpn/sn74hc00
$ENDCMP
#
$CMP 74HC02
D quad 2-input NOR gate
K HCMOS Nor2
F http://www.ti.com/lit/gpn/sn74hc02
$ENDCMP
#
$CMP 74HC04
D Hex Inverter
K HCMOS not inv
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT04.pdf
$ENDCMP
#
$CMP 74HC123
D Dual retriggerable monostable multivibrator
K TTL monostable, multivibrator
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT123.pdf
$ENDCMP
#
$CMP 74HC137
D 3-to-8 line decoder/multiplexer with address latches, DIP-16/SOIC-16/SSOP-16
K demux
F http://www.ti.com/lit/ds/symlink/cd74hc237.pdf
$ENDCMP
#
$CMP 74HC14
D Hex inverter schmitt trigger
K HCMOS not inverter
F http://www.ti.com/lit/gpn/sn74HC14
$ENDCMP
#
$CMP 74HC164
D 8-bit serial-in parallel-out shift register
K 8-bit shift register
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT164.pdf
$ENDCMP
#
$CMP 74HC237
D 3-to-8 line decoder/multiplexer with address latches, DIP-16/SOIC-16/SSOP-16
K demux
F http://www.ti.com/lit/ds/symlink/cd74hc237.pdf
$ENDCMP
#
$CMP 74HC240
D 8-bit Buffer/Line Driver 3-state Inverting
K TTL BUFFER 3State inv
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT240.pdf
$ENDCMP
#
$CMP 74HC244
D 8-bit Buffer/Line Driver 3-state
K HCMOS BUFFER 3State
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT244.pdf
$ENDCMP
#
$CMP 74HC245
D Octal BUS Transceivers, 3-State outputs
K HCMOS BUS 3State
F http://www.ti.com/lit/gpn/sn74HC245
$ENDCMP
#
$CMP 74HC273
D 8-bit D Flip-Flop, reset
K HCMOS DFF DFF8
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT273.pdf
$ENDCMP
#
$CMP 74HC374
D 8-bit Register, 3-state outputs
K HCMOS DFF DFF8 REG 3State
F https://www.ti.com/lit/ds/symlink/cd74hct374.pdf
$ENDCMP
#
$CMP 74HC4024
D 7-stage binary ripple counter, SOIC-14
K binary counter
F https://assets.nexperia.com/documents/data-sheet/74HC4024.pdf
$ENDCMP
#
$CMP 74HC4051
D 8-channel analog multiplexer/demultiplexer, DIP-16/SOIC-16/TSSOP-16
K HCMOS Multiplexer Demultiplexer Analog
F http://www.ti.com/lit/ds/symlink/cd74hc4051.pdf
$ENDCMP
#
$CMP 74HC590
D 8-bit Binary Counter with Output Register 3-State Outputs, SOIC-16/TSSOP-16
K HCMOS Counter 3State
F https://assets.nexperia.com/documents/data-sheet/74HC590.pdf
$ENDCMP
#
$CMP 74HC590A
D 8-bit Binary Counter with Output Register 3-State Outputs, DIP-16/SOIC-16/SOIC-16W
K HCMOS Counter 3State
F http://www.ti.com/lit/ds/symlink/sn74hc590a.pdf
$ENDCMP
#
$CMP 74HC595
D 8-bit serial in/out Shift Register 3-State Outputs
K HCMOS SR 3State
F http://www.ti.com/lit/ds/symlink/sn74hc595.pdf
$ENDCMP
#
$CMP 74HC596
D 8-bit serial in/out Shift Register Open Collector Outputs
K HCMOS SR OpenCollector
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT595.pdf
$ENDCMP
#
$CMP 74HC7014
D Hex non-inverting buffer with precision Schmitt Trigger inputs, SOIC-14
K Hex non-inverting Schmitt buffer
F https://assets.nexperia.com/documents/data-sheet/74HC7014.pdf
$ENDCMP
#
$CMP 74HC74
D Dual D Flip-flop, Set & Reset
K TTL DFF
F 74xx/74hc_hct74.pdf
$ENDCMP
#
$CMP 74HC86
D Quad 2-input XOR
K TTL XOR2
F http://www.ti.com/lit/gpn/sn74HC86
$ENDCMP
#
$CMP 74HCT00
D quad 2-input NAND gate
K HCTMOS nand 2-input
F http://www.ti.com/lit/gpn/sn74hct00
$ENDCMP
#
$CMP 74HCT02
D quad 2-input NOR gate
K HCTMOS Nor2
F http://www.ti.com/lit/gpn/sn74hct02
$ENDCMP
#
$CMP 74HCT04
D Hex Inverter
K HCTMOS not inv
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT04.pdf
$ENDCMP
#
$CMP 74HCT123
D Dual retriggerable monostable multivibrator
K TTL monostable, multivibrator
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT123.pdf
$ENDCMP
#
$CMP 74HCT137
D 3-to-8 line decoder/multiplexer with address latches, DIP-16/SOIC-16/SSOP-16
K demux
F http://www.ti.com/lit/ds/symlink/cd74hc237.pdf
$ENDCMP
#
$CMP 74HCT164
D 8-bit serial-in parallel-out shift register
K 8-bit shift register
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT164.pdf
$ENDCMP
#
$CMP 74HCT237
D 3-to-8 line decoder/multiplexer with address latches, DIP-16/SOIC-16/SSOP-16
K demux
F http://www.ti.com/lit/ds/symlink/cd74hc237.pdf
$ENDCMP
#
$CMP 74HCT240
D 8-bit buffer; 3-state; inverting
K octal buffer line driver inverting
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT240.pdf
$ENDCMP
#
$CMP 74HCT244
D 8-bit Buffer/Line Driver 3-state
K HCTMOS BUFFER 3State
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT244.pdf
$ENDCMP
#
$CMP 74HCT273
D 8-bit D Flip-Flop, reset
K HCTMOS DFF DFF8
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT273.pdf
$ENDCMP
#
$CMP 74HCT374
D 8-bit Register, 3-state outputs
K HCTMOS DFF DFF8 REG 3State
F https://www.ti.com/lit/ds/symlink/cd74hct374.pdf
$ENDCMP
#
$CMP 74HCT4051
D 8-channel analog multiplexer/demultiplexer, DIP-16/SOIC-16/TSSOP-16
K TTL Multiplexer Demultiplexer Analog
F http://www.ti.com/lit/ds/symlink/cd74hct4051.pdf
$ENDCMP
#
$CMP 74HCT541
D 8-bit Buffer/Line Driver 3-state outputs
K TTL BUFFER 3State BUS
F http://www.ti.com/lit/gpn/sn74HCT541
$ENDCMP
#
$CMP 74HCT574
D 8-bit Register, 3-state outputs
K TTL REG DFF DFF8 3State
F http://www.ti.com/lit/gpn/sn74HCT574
$ENDCMP
#
$CMP 74HCT595
D 8-bit serial in/out Shift Register 3-State Outputs
K HCTMOS SR 3State
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT595.pdf
$ENDCMP
#
$CMP 74HCT596
D 8-bit serial in/out Shift Register Open Collector Outputs
K HCTMOS SR OpenCollector
F https://assets.nexperia.com/documents/data-sheet/74HC_HCT595.pdf
$ENDCMP
#
$CMP 74LCX07
D CMOS hex buffer (open drain) with 5V tolerant inputs
K CMOS hex buffer
F www.st.com/resource/en/datasheet/74lcx07.pdf
$ENDCMP
#
$CMP 74LS00
D quad 2-input NAND gate
K TTL nand 2-input
F http://www.ti.com/lit/gpn/sn74ls00
$ENDCMP
#
$CMP 74LS01
D quad 2-input NAND gate, open collector outputs NRND
K TTL nand 2-input open collector
F http://www.nteinc.com/specs/7400to7499/pdf/nte74LS01.pdf
$ENDCMP
#
$CMP 74LS02
D quad 2-input NOR gate
K TTL Nor2
F http://www.ti.com/lit/gpn/sn74ls02
$ENDCMP
#
$CMP 74LS03
D Quad 2-input NAND open collector
K TTL Nand2 OpenColl
F http://www.ti.com/lit/gpn/sn74LS03
$ENDCMP
#
$CMP 74LS04
D Hex Inverter
K TTL not inv
F http://www.ti.com/lit/gpn/sn74LS04
$ENDCMP
#
$CMP 74LS05
D Inverter Open Collect
K TTL not inv OpenCol
F http://www.ti.com/lit/gpn/sn74LS05
$ENDCMP
#
$CMP 74LS06
D Inverter Open Collect
K TTL not inv OpenCol
F http://www.ti.com/lit/gpn/sn74LS06
$ENDCMP
#
$CMP 74LS06N
D Inverter Open Collect
K TTL not inv OpenCol
F http://www.ti.com/lit/gpn/sn74LS06N
$ENDCMP
#
$CMP 74LS07
D Hex Buffers and Drivers With Open Collector High Voltage Outputs
K TTL hex buffer OpenCol
F www.ti.com/lit/ds/symlink/sn74ls07.pdf
$ENDCMP
#
$CMP 74LS08
D Quad And2
K TTL and2
F http://www.ti.com/lit/gpn/sn74LS08
$ENDCMP
#
$CMP 74LS09
D Quad 2-input AND Open Collect
K TTL and2 OpenCol
F http://www.ti.com/lit/gpn/sn74LS09
$ENDCMP
#
$CMP 74LS10
D Triple 3-input NAND
K TTL Nand3
F http://www.ti.com/lit/gpn/sn74LS10
$ENDCMP
#
$CMP 74LS107
D Dual JK Flip-Flop, reset
K TTL JK
F http://www.ti.com/lit/gpn/sn74LS107
$ENDCMP
#
$CMP 74LS109
D Dual JK Flip-Flop, Set & Reset
K TTL JK
F http://www.ti.com/lit/gpn/sn74LS109
$ENDCMP
#
$CMP 74LS11
D Triple 3-input AND
K TTL And3
F http://www.ti.com/lit/gpn/sn74LS11
$ENDCMP
#
$CMP 74LS112
D dual JK Flip-Flop, Set & Reset
K TTL JK
F http://www.ti.com/lit/gpn/sn74LS112
$ENDCMP
#
$CMP 74LS113
D dual JK flip-flop, Set
K TTL JK
F http://www.ti.com/lit/gpn/sn74LS113
$ENDCMP
#
$CMP 74LS114
D Dual JK flip-flop, common Clock & Reset, Set
K TTL JK
F http://www.ti.com/lit/gpn/sn74LS114
$ENDCMP
#
$CMP 74LS12
D Triple 3-input NAND Open Collector
K TTL Nand3 OpenCol
F http://www.ti.com/lit/gpn/sn74LS12
$ENDCMP
#
$CMP 74LS121
D monostable multivibrator with Schmitt-trigger inputs
K monostable
F http://www.ti.com/lit/gpn/sn74121
$ENDCMP
#
$CMP 74LS122
D Retriggerable Monostable
K TTL monostable
F http://www.ti.com/lit/gpn/sn74LS122
$ENDCMP
#
$CMP 74LS123
D Dual retriggerable Monostable
K TTL monostable
F http://www.ti.com/lit/gpn/sn74LS123
$ENDCMP
#
$CMP 74LS125
D Quad buffer 3-State outputs
K TTL buffer 3State
F http://www.ti.com/lit/gpn/sn74LS125
$ENDCMP
#
$CMP 74LS126
D Quad buffer 3-State outputs
K TTL Buffer 3State
F http://www.ti.com/lit/gpn/sn74LS126
$ENDCMP
#
$CMP 74LS13
D Dual 4-input NAND Schmitt trigger
K TTL Nand4
F http://www.ti.com/lit/gpn/sn74LS13
$ENDCMP
#
$CMP 74LS132
D Quad 2-input NAND Schmitt trigger
K TTL Nand2
F http://www.ti.com/lit/gpn/sn74LS132
$ENDCMP
#
$CMP 74LS133
D NAND 13-input
K TTL Nand13
F http://www.ti.com/lit/gpn/sn74LS133
$ENDCMP
#
$CMP 74LS136
D Quad 2-input XOR Open Collector
K TTL XOR2 OpenCol
F http://www.ti.com/lit/ds/symlink/sn54ls136.pdf
$ENDCMP
#
$CMP 74LS137
D Decoder 3 to 8, address latches
K TTL DECOD8 DECOD
F http://www.ti.com/lit/gpn/sn74LS137
$ENDCMP
#
$CMP 74LS138
D Decoder 3 to 8 active low outputs
K TTL DECOD DECOD8
F http://www.ti.com/lit/gpn/sn74LS138
$ENDCMP
#
$CMP 74LS139
D Dual Decoder 1 of 4, Active low outputs
K TTL DECOD4
F http://www.ti.com/lit/gpn/sn74LS139
$ENDCMP
#
$CMP 74LS14
D Hex inverter schmitt trigger
K TTL not inverter
F http://www.ti.com/lit/gpn/sn74LS14
$ENDCMP
#
$CMP 74LS145
D Decoder 1 to 10, Open Collector
K TTL DECOD10 OpenColl
F http://www.ti.com/lit/gpn/sn74LS145
$ENDCMP
#
$CMP 74LS147
D Priority Encoder, 10 to 4
K TTL ENCOD
F http://www.ti.com/lit/gpn/sn74LS147
$ENDCMP
#
$CMP 74LS148
D Priority Encoder 3 to 8 cascadable
K TTL ENCOD
F http://www.ti.com/lit/gpn/sn74LS148
$ENDCMP
#
$CMP 74LS15
D Triple 3-input AND
K TTL And3
F http://www.ti.com/lit/gpn/sn74LS15
$ENDCMP
#
$CMP 74LS151
D Multiplexer 8 to 1
K TTL MUX8
F http://www.ti.com/lit/gpn/sn74LS151
$ENDCMP
#
$CMP 74LS153
D Dual Multiplexer 4 to 1
K TTL Mux4
F http://www.ti.com/lit/gpn/sn74LS153
$ENDCMP
#
$CMP 74LS154
D Decoder 4 to 16
K TTL DECOD16 DECOD
F http://www.ti.com/lit/gpn/sn74LS154
$ENDCMP
#
$CMP 74LS155
D Dual 2 to 4 lines Decoder/Demultiplexer
K TTL DECOD8 DECOD4 DEMUX4 DEMUX8 DEMUX DECOD
F http://www.ti.com/lit/gpn/sn74LS155
$ENDCMP
#
$CMP 74LS156
D Dual 2 to 4 lines Decoder/Demultiplexer, Open Collector
K TTL DECOD8 DECOD4 DEMUX4 DEMUX8 OpenCol
F http://www.ti.com/lit/gpn/sn74LS156
$ENDCMP
#
$CMP 74LS157
D Quad 2 to 1 line Multiplexer
K TTL MUX MUX2
F http://www.ti.com/lit/gpn/sn74LS157
$ENDCMP
#
$CMP 74LS158
D Quad 2 to 1 multiplexer
K TTL Mux MUX2
F http://www.ti.com/lit/gpn/sn74LS158
$ENDCMP
#
$CMP 74LS160
D Synchronous 4-bit programmable decimal Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS160
$ENDCMP
#
$CMP 74LS161
D Synchronous 4-bit programmable binary Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS161
$ENDCMP
#
$CMP 74LS162
D Synchronous 4-bit programmable decimal Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS162
$ENDCMP
#
$CMP 74LS163
D Synchronous 4-bit programmable binary Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS163
$ENDCMP
#
$CMP 74LS165
D Shift Register 8-bit, parallel load
K TTL SR SR8
F http://www.ti.com/lit/gpn/sn74LS165
$ENDCMP
#
$CMP 74LS166
D Shift Register 8-bit, parallel load
K TTL SR SR8
F http://www.ti.com/lit/gpn/sn74LS166
$ENDCMP
#
$CMP 74LS168
D Synchronous 4-bit Up/Down Decimal counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS168
$ENDCMP
#
$CMP 74LS169
D Synchronous 4-bit Up/Down binary counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS169
$ENDCMP
#
$CMP 74LS170
D 4 x 4 Register Files Open Collector
K TTL Register OpenCol
F http://www.ti.com/lit/gpn/sn74LS170
$ENDCMP
#
$CMP 74LS173
D 4-bit D-type Register, 3 state out
K TTL REG REG4 3State DFF
F http://www.ti.com/lit/gpn/sn74LS173
$ENDCMP
#
$CMP 74LS174
D Hex D-type Flip-Flop, reset
K TTL REG REG6 DFF
F http://www.ti.com/lit/gpn/sn74LS174
$ENDCMP
#
$CMP 74LS175
D 4-bit D Flip-Flop, reset
K TTL REG REG4 DFF
F http://www.ti.com/lit/gpn/sn74LS175
$ENDCMP
#
$CMP 74LS181
D Arithmetic logic unit
K TTL ALU ARITH
F 74xx/74F181.pdf
$ENDCMP
#
$CMP 74LS182
D Carry generator
K TTL ALU ARITH
F http://www.ti.com/lit/gpn/sn74LS182
$ENDCMP
#
$CMP 74LS190
D 4-bit Synchronous Up/Down BCD Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS190
$ENDCMP
#
$CMP 74LS191
D 4-bit Synchronous Up/Down binary Counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS191
$ENDCMP
#
$CMP 74LS192
D Synchronous 4-bit Up/Down (2 clk) counter
K TTL CNT CNT4
F http://www.ti.com/lit/ds/symlink/sn74ls193.pdf
$ENDCMP
#
$CMP 74LS193
D Synchronous 4-bit Up/Down (2 clk) counter
K TTL CNT CNT4
F http://www.ti.com/lit/ds/symlink/sn74ls193.pdf
$ENDCMP
#
$CMP 74LS194
D Shift Register 4-bit Bidirectional
K TTL RS SR4
F http://www.ti.com/lit/gpn/sn74LS194
$ENDCMP
#
$CMP 74LS195
D Shift Register 4-bit, parallel
K TTL SR SR4
F http://www.ti.com/lit/gpn/sn74LS195
$ENDCMP
#
$CMP 74LS196
D 4 (3+1)-bit presettable BCD counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS196
$ENDCMP
#
$CMP 74LS197
D 4 (3+1)-bit presettable binary counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS197
$ENDCMP
#
$CMP 74LS20
D Dual 4-input NAND
K TTL Nand4
F http://www.ti.com/lit/gpn/sn74LS20
$ENDCMP
#
$CMP 74LS21
D Dual 4-input AND
K TTL And4
F http://www.ti.com/lit/gpn/sn74LS21
$ENDCMP
#
$CMP 74LS22
D Dual 4-input NAND Open Collector
K TTL Nand4 OpenColl
F http://www.ti.com/lit/gpn/sn74LS22
$ENDCMP
#
$CMP 74LS221
D Dual Monostable
K TTL Monostable
F http://www.ti.com/lit/gpn/sn74LS221
$ENDCMP
#
$CMP 74LS240
D 8-bit BUS Buffer (Inverter) 3-State outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS240
$ENDCMP
#
$CMP 74LS241
D 8-bit Bus Buffer 3-State outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS241
$ENDCMP
#
$CMP 74LS242
D quad bus transceiver, inverting 3-state outputs
K bus 3state
F http://www.ti.com/lit/gpn/sn74LS242
$ENDCMP
#
$CMP 74LS243
D 4-bit Bus Tranceiver
K TTL Buffer 3State BUS BIDI
F http://www.ti.com/lit/gpn/sn74LS243
$ENDCMP
#
$CMP 74LS244
D 8-bit Bus Buffer 3-State outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS244
$ENDCMP
#
$CMP 74LS245
D Octal BUS Transceivers, 3-State outputs
K TTL BUS 3State
F http://www.ti.com/lit/gpn/sn74LS245
$ENDCMP
#
$CMP 74LS246
D BCD to 7-segment Decoder Open Collector active Low
K TTL DECOD
F http://www.ti.com/lit/gpn/sn74LS246
$ENDCMP
#
$CMP 74LS247
D BCD to 7 segments Decoder Open Collector active Low
K TTL DECOD
F http://www.ti.com/lit/gpn/sn74LS247
$ENDCMP
#
$CMP 74LS248
D BCD to 7-segment Decoder, Active High
K TTL DECOD
F http://www.ti.com/lit/gpn/sn74LS248
$ENDCMP
#
$CMP 74LS249
D BCD to 7-segment Decoder, Open collector, Active High
K TTL DECOD OpenCol
F http://www.ti.com/lit/gpn/sn74LS249
$ENDCMP
#
$CMP 74LS251
D Multiplexer 8 to 1, 3-state Outputs
K TTL MUX MUX8 3State
F http://www.ti.com/lit/gpn/sn74LS251
$ENDCMP
#
$CMP 74LS253
D Dual Multiplexer 4 to 1, 3-State Outputs
K TTL MUX MUX4 3State
F http://www.ti.com/lit/gpn/sn74LS253
$ENDCMP
#
$CMP 74LS256
D dual 4-bit addressable latch
K latch
F http://www.ti.com/lit/gpn/sn74LS256
$ENDCMP
#
$CMP 74LS257
D Quad 2 to 1 Multiplexer
K TTL MUX MUX2
F http://www.ti.com/lit/gpn/sn74LS257
$ENDCMP
#
$CMP 74LS258
D Quad 2 to 1 Multiplexer, inverting
K TTL MUX MUX2
F http://www.ti.com/lit/gpn/sn74LS258
$ENDCMP
#
$CMP 74LS259
D 8-bit addressable latch
K TTL REG DFF
F http://www.ti.com/lit/gpn/sn74LS259
$ENDCMP
#
$CMP 74LS26
D Quad 2-input NAND Open collector
K TTL Nand2 OpenCol
F http://www.ti.com/lit/gpn/sn74LS26
$ENDCMP
#
$CMP 74LS27
D Triple 3-input NOR
K TTL Nor3
F http://www.ti.com/lit/gpn/sn74LS27
$ENDCMP
#
$CMP 74LS273
D 8-bit D Flip-Flop, reset
K TTL DFF DFF8
F http://www.ti.com/lit/gpn/sn74LS273
$ENDCMP
#
$CMP 74LS28
D quad 2-input NOR buffer NRND
K TTL Nor2 Buffer
F http://eeshop.unl.edu/pdf/74ls28.pdf
$ENDCMP
#
$CMP 74LS280
D Parity Generator/Checker
K TTL ALU Arith
F http://www.ti.com/lit/gpn/sn74LS280
$ENDCMP
#
$CMP 74LS283
D 4-bit full Adder
K TTL ADD Arith ALU
F http://www.ti.com/lit/gpn/sn74LS283
$ENDCMP
#
$CMP 74LS290
D 4-bit BCD counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS290
$ENDCMP
#
$CMP 74LS293
D 4-bit binary counter
K TTL CNT CNT4
F http://www.ti.com/lit/gpn/sn74LS293
$ENDCMP
#
$CMP 74LS295
D 4-bit bidirectional register, 3-state outputs
K register
F http://www.ti.com/lit/gpn/sn74LS295
$ENDCMP
#
$CMP 74LS298
D Quad 2 to 1 multiplexer with storage
K TTL MUX MUX2
F http://www.ti.com/lit/gpn/sn74LS298
$ENDCMP
#
$CMP 74LS299
D 8-bit Universal shift/storage Register
K TTL REG SR SR8
F http://www.ti.com/lit/gpn/sn74LS299
$ENDCMP
#
$CMP 74LS30
D 8-input NAND
K TTL Nand8
F http://www.ti.com/lit/gpn/sn74LS30
$ENDCMP
#
$CMP 74LS32
D Quad 2-input OR
K TTL Or2
F http://www.ti.com/lit/gpn/sn74LS32
$ENDCMP
#
$CMP 74LS322
D 8-bit shift register, sign extend, 3-state outputs
K register
F http://www.ti.com/lit/gpn/sn74LS322
$ENDCMP
#
$CMP 74LS323
D 8-bit Universal Shift/Storage Register
K TTL REG SR SR8
F http://www.ti.com/lit/gpn/sn74LS323
$ENDCMP
#
$CMP 74LS33
D Quad 2-input NOR, Open collector
K TTL Nor2 OpenColl
F http://www.ti.com/lit/gpn/sn74LS33
$ENDCMP
#
$CMP 74LS348
D 8 to 3 lines Priority Encoder
K TTL ENCOD Arith
F http://www.ti.com/lit/gpn/sn74LS348
$ENDCMP
#
$CMP 74LS352
D Dual 4 to 1 line Multiplexer
K TTL Mux MUX4
F http://www.ti.com/lit/gpn/sn74LS352
$ENDCMP
#
$CMP 74LS353
D Dual 4 to 1 line Multiplexer, inverter
K TTL MUX MUX2
F http://www.ti.com/lit/gpn/sn74LS353
$ENDCMP
#
$CMP 74LS365
D Hex Bus Driver, 3-State Outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS365
$ENDCMP
#
$CMP 74LS366
D Hex Bus Driver inverter, 3-state outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS366
$ENDCMP
#
$CMP 74LS367
D Hex Bus Driver 3-state outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS367
$ENDCMP
#
$CMP 74LS368
D Hex Bus Driver inverter, 3-state outputs
K TTL Buffer BUS 3State
F http://www.ti.com/lit/gpn/sn74LS368
$ENDCMP
#
$CMP 74LS37
D quad 2-input NAND buffer
K TTL nand 2-input buffer
F http://www.ti.com/lit/gpn/sn74ls37
$ENDCMP
#
$CMP 74LS373
D 8-bit Latch, 3-state outputs
K TTL REG DFF DFF8 LATCH
F http://www.ti.com/lit/gpn/sn74LS373
$ENDCMP
#
$CMP 74LS374
D 8-bit Register, 3-state outputs