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.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/emu/netlist/devices/nld_log.h b/src/emu/netlist/devices/nld_log.h
index f8910f51112..16d389263b8 100644
--- a/src/emu/netlist/devices/nld_log.h
+++ b/src/emu/netlist/devices/nld_log.h
@@ -21,32 +21,32 @@
#include "../nl_base.h"
#define NETDEV_LOG(_name, _I) \
- NET_REGISTER_DEV(log, _name) \
- NET_CONNECT(_name, I, _I)
+ NET_REGISTER_DEV(log, _name) \
+ NET_CONNECT(_name, I, _I)
NETLIB_DEVICE(log,
- ~NETLIB_NAME(log)();
- netlist_analog_input_t m_I;
+ ~NETLIB_NAME(log)();
+ netlist_analog_input_t m_I;
protected:
- FILE *m_file;
+ FILE *m_file;
);
#define NETDEV_LOGD(_name, _I, _I2) \
- NET_REGISTER_DEV(logD, _name) \
- NET_CONNECT(_name, I, _I) \
- NET_CONNECT(_name, I2, _I2)
+ 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;
+ netlist_analog_input_t m_I2;
);
#if 0
NETLIB_DEVICE(wav,
- ~NETLIB_NAME(wav)();
- netlist_analog_input_t m_I;
+ ~NETLIB_NAME(wav)();
+ netlist_analog_input_t m_I;
private:
- // FIXME: rewrite sound/wavwrite.h to be an object ...
- void *m_file;
+ // FIXME: rewrite sound/wavwrite.h to be an object ...
+ void *m_file;
);
#endif