diff options
Diffstat (limited to 'src/devices/machine/ds2401.cpp')
-rw-r--r-- | src/devices/machine/ds2401.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ds2401.cpp b/src/devices/machine/ds2401.cpp index 48182b2d2c3..7298fa888ee 100644 --- a/src/devices/machine/ds2401.cpp +++ b/src/devices/machine/ds2401.cpp @@ -30,7 +30,7 @@ inline void ds2401_device::verboselog(int n_level, const char *s_fmt, ...) const device_type DS2401 = &device_creator<ds2401_device>; ds2401_device::ds2401_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, DS2401, "DS2401", tag, owner, clock, "ds2401", __FILE__) + : device_t(mconfig, DS2401, "DS2401", tag, owner, clock, "ds2401", __FILE__), m_state(0), m_bit(0), m_shift(0), m_byte(0), m_rx(false), m_tx(false), m_timer_main(nullptr), m_timer_reset(nullptr) { } |