blob: dfd75f746c7967b7c2fdbc1b199f07c0e8f80c60 (
plain) (
blame)
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
|
// license:GPL-2.0+
// copyright-holders:Couriersud
/*
* nld_74123.h
*
* 74123: Dual Retriggerable One-Shot with Clear and Complementary Outputs
*
* +--------------+
* A1 |1 ++ 16| VCC
* B1 |2 15| RC1
* CLR1 |3 14| C1
* Q1Q |4 74123 13| Q1
* Q2 |5 12| Q2Q
* C2 |6 11| CLR2
* RC2 |7 10| B2
* GND |8 9| A2
* +--------------+
*
* Naming conventions follow Fairchild Semiconductor datasheet
*
* DM9602: Dual Retriggerable, Resettable One Shots
*
* +--------------+
* C1 |1 ++ 16| VCC
* RC1 |2 15| C2
* CLR1 |3 14| RC2
* B1 |4 9602 13| CLR2
* A1 |5 12| B2
* Q1 |6 11| A2
* Q1Q |7 10| Q2
* GND |8 9| Q2Q
* +--------------+
*
* CD4538: Dual Retriggerable, Resettable One Shots
*
* +--------------+
* C1 |1 ++ 16| VCC
* RC1 |2 15| C2
* CLR1 |3 14| RC2
* A1 |4 4538 13| CLR2
* B1 |5 12| A2
* Q1 |6 11| B2
* Q1Q |7 10| Q2
* GND |8 9| Q2Q
* +--------------+
*
*/
#ifndef NLD_74123_H_
#define NLD_74123_H_
#include "../nl_setup.h"
#define TTL_74123(name) \
NET_REGISTER_DEV(TTL_74123, name)
#define TTL_74123_DIP(name) \
NET_REGISTER_DEV(TTL_74123_DIP, name)
/* The 9602 is very similar to the 123. Input triggering is slightly different
* The 9602 uses an OR gate instead of an AND gate.
*/
#define TTL_9602_DIP(name) \
NET_REGISTER_DEV(TTL_9602_DIP, name)
/*
* The CD4538 is pretty similar to the 9602
*/
#define CD4538_DIP(name) \
NET_REGISTER_DEV(CD4538_DIP, name)
#endif /* NLD_74123_H_ */
|