blob: 13d2254d9521a98e8e7f9f57c99860f90dcabfac (
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
|
// license:GPL-2.0+
// copyright-holders:Couriersud
#ifndef NLM_OPAMP_H_
#define NLM_OPAMP_H_
#include "netlist/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 LM2902_DIP(name) \
NET_REGISTER_DEV(LM2902_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
|