blob: 9cffbb29c876bb9f8d1416a2773188cd28adc3ad (
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
|
// license:GPL-2.0+
// copyright-holders:Couriersud
#ifndef NLM_OPAMP_H_
#define NLM_OPAMP_H_
#include "../nl_setup.h"
#ifndef __PLIB_PREPROCESSOR__
/* ----------------------------------------------------------------------------
* Netlist Macros
* ---------------------------------------------------------------------------*/
#ifndef NL_AUTO_DEVICES
#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)
#define LM3900(name) \
NET_REGISTER_DEV(LM3900, name)
#endif
/* ----------------------------------------------------------------------------
* External declarations
* ---------------------------------------------------------------------------*/
NETLIST_EXTERNAL(OPAMP_lib)
#endif
#endif
|