summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/devices/nld_7486.h
blob: b00d8905ae36d0ede6537da0104cf56603fcdfa3 (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
// license:GPL-2.0+
// copyright-holders:Couriersud
/*
 * nld_7486.h
 *
 *  DM7486: Quad 2-Input Quad 2-Input Exclusive-OR Gates
 *
 *          +--------------+
 *       A1 |1     ++    14| VCC
 *       B1 |2           13| B4
 *       Y1 |3           12| A4
 *       A2 |4    7486   11| Y4
 *       B2 |5           10| B3
 *       Y2 |6            9| A3
 *      GND |7            8| Y3
 *          +--------------+
 *
 *             Y = A+B
 *          +---+---++---+
 *          | A | B || Y |
 *          +===+===++===+
 *          | 0 | 0 || 0 |
 *          | 0 | 1 || 1 |
 *          | 1 | 0 || 1 |
 *          | 1 | 1 || 0 |
 *          +---+---++---+
 *
 *  Naming conventions follow National Semiconductor datasheet
 *
 */

#ifndef NLD_7486_H_
#define NLD_7486_H_

#include "nld_signal.h"

#define TTL_7486_XOR(_name, _A, _B)                                                 \
        NET_REGISTER_DEV(7486, _name)                                               \
        NET_CONNECT(_name, A, _A)                                                   \
        NET_CONNECT(_name, B, _B)

NETLIB_DEVICE(7486,
        netlist_ttl_input_t m_A;
        netlist_ttl_input_t m_B;
        netlist_ttl_output_t m_Q;
);
#endif /* NLD_7486_H_ */