summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ds2401.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ds2401.cpp')
-rw-r--r--src/devices/machine/ds2401.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/devices/machine/ds2401.cpp b/src/devices/machine/ds2401.cpp
index bb1a3064dad..a5fea5b189b 100644
--- a/src/devices/machine/ds2401.cpp
+++ b/src/devices/machine/ds2401.cpp
@@ -31,8 +31,14 @@ DEFINE_DEVICE_TYPE(DS2401, ds2401_device, "ds2401", "DS2401 Silicon Serial Numbe
ds2401_device::ds2401_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, DS2401, tag, owner, clock)
- , 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)
+ , 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)
{
}