summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/macro/nlm_opamp.h
blob: f9ed62d71b3e4cbc9ecd39dbab803a7540953ad7 (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
#ifndef NLM_OPAMP_H_
#define NLM_OPAMP_H_

#include "../nl_setup.h"

#ifndef __PLIB_PREPROCESSOR__

/* ----------------------------------------------------------------------------
 *  Netlist Macros
 * ---------------------------------------------------------------------------*/

#define MB3614_DIP(_name)            			                               \
		NET_REGISTER_DEV(MB3614_DIP, _name)

#define LM324_DIP(_name)            			                               \
		NET_REGISTER_DEV(LM324_DIP, _name)

#define LM358_DIP(_name)            			                               \
		NET_REGISTER_DEV(LM358_DIP, _name)

/* ----------------------------------------------------------------------------
 *  External declarations
 * ---------------------------------------------------------------------------*/

NETLIST_EXTERNAL(OPAMP_lib)

#endif

#endif