mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
netlist: make gain parameter mandatory for controoled sources. (nw)
This commit is contained in:
parent
5ce8dfb369
commit
2b7c6af9ef
@ -14,17 +14,17 @@
|
||||
// Macros
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
||||
#define VCCS(name) \
|
||||
NET_REGISTER_DEV(VCCS, name)
|
||||
#define VCCS(name, G) \
|
||||
NET_REGISTER_DEVEXT(VCCS, G)
|
||||
|
||||
#define CCCS(name) \
|
||||
NET_REGISTER_DEV(CCCS, name)
|
||||
#define CCCS(name, G) \
|
||||
NET_REGISTER_DEVEXT(CCCS, name, G)
|
||||
|
||||
#define VCVS(name) \
|
||||
NET_REGISTER_DEV(VCVS, name)
|
||||
#define VCVS(name, G) \
|
||||
NET_REGISTER_DEVEXT(VCVS, name, G)
|
||||
|
||||
#define CCVS(name) \
|
||||
NET_REGISTER_DEV(CCVS, name)
|
||||
#define CCVS(name, G) \
|
||||
NET_REGISTER_DEVEXT(CCVS, name, G)
|
||||
|
||||
#define LVCCS(name) \
|
||||
NET_REGISTER_DEV(LVCCS, name)
|
||||
|
@ -124,10 +124,10 @@ NETLIB_RESET(CCVS)
|
||||
} //namespace analog
|
||||
|
||||
namespace devices {
|
||||
NETLIB_DEVICE_IMPL_NS(analog, VCVS, "VCVS", "")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, VCCS, "VCCS", "")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, CCCS, "CCCS", "")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, CCVS, "CCVS", "")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, VCVS, "VCVS", "G")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, VCCS, "VCCS", "G")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, CCCS, "CCCS", "G")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, CCVS, "CCVS", "G")
|
||||
NETLIB_DEVICE_IMPL_NS(analog, LVCCS, "LVCCS", "")
|
||||
} // namespace devices
|
||||
} // namespace netlist
|
||||
|
Loading…
Reference in New Issue
Block a user