fixed uninitialized members in src/emu/machine/upd1990a.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-22 08:15:35 +00:00
parent 8173d26a63
commit 8e391558d7

View File

@ -57,7 +57,9 @@ enum
upd1990a_rtc_device::upd1990a_rtc_device(const machine_config &mconfig, device_type type, const char* name, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, type, name, tag, owner, clock),
device_rtc_interface(mconfig, *this),
m_data_out(0)
m_data_out(0),
m_c(0),
m_clk(0)
{
}