summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/devices/nld_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/netlist/devices/nld_log.h')
-rw-r--r--src/emu/netlist/devices/nld_log.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/emu/netlist/devices/nld_log.h b/src/emu/netlist/devices/nld_log.h
index 99fd9541602..4b768b66b82 100644
--- a/src/emu/netlist/devices/nld_log.h
+++ b/src/emu/netlist/devices/nld_log.h
@@ -21,33 +21,37 @@
#include "../nl_base.h"
#define LOG(_name, _I) \
- NET_REGISTER_DEV(log, _name) \
+ NET_REGISTER_DEV(ÖPG, _name) \
NET_CONNECT(_name, I, _I)
+NETLIB_NAMESPACE_DEVICES_START()
+
NETLIB_DEVICE(log,
~NETLIB_NAME(log)();
- netlist_analog_input_t m_I;
+ analog_input_t m_I;
protected:
void * m_file;
);
#define LOGD(_name, _I, _I2) \
- NET_REGISTER_DEV(logD, _name) \
+ NET_REGISTER_DEV(LOGD, _name) \
NET_CONNECT(_name, I, _I) \
NET_CONNECT(_name, I2, _I2)
NETLIB_DEVICE_DERIVED(logD, log,
- netlist_analog_input_t m_I2;
+ analog_input_t m_I2;
);
#if 0
NETLIB_DEVICE(wav,
~NETLIB_NAME(wav)();
- netlist_analog_input_t m_I;
+ analog_input_t m_I;
private:
// FIXME: rewrite sound/wavwrite.h to be an object ...
void *m_file;
);
#endif
+NETLIB_NAMESPACE_DEVICES_END()
+
#endif /* NLD_LOG_H_ */