diff options
author | 2015-11-19 19:44:23 +0100 | |
---|---|---|
committer | 2015-11-19 19:45:32 +0100 | |
commit | b7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch) | |
tree | 0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/machine/rtc4543.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/machine/rtc4543.cpp')
-rw-r--r-- | src/devices/machine/rtc4543.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/rtc4543.cpp b/src/devices/machine/rtc4543.cpp index ccbf32b5faa..0d0211304cb 100644 --- a/src/devices/machine/rtc4543.cpp +++ b/src/devices/machine/rtc4543.cpp @@ -32,7 +32,7 @@ const device_type RTC4543 = &device_creator<rtc4543_device>; rtc4543_device::rtc4543_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, RTC4543, "R4543 RTC", tag, owner, clock, "rtc4543", __FILE__), device_rtc_interface(mconfig, *this), - data_cb(*this) + data_cb(*this), m_ce(0), m_clk(0), m_wr(0), m_data(0), m_shiftreg(0), m_curreg(0), m_curbit(0), m_clock_timer(nullptr) { } |