mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
fixed uninitialized members in src/emu/machine/upd1990a.c (nw)
This commit is contained in:
parent
8173d26a63
commit
8e391558d7
@ -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)
|
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_t(mconfig, type, name, tag, owner, clock),
|
||||||
device_rtc_interface(mconfig, *this),
|
device_rtc_interface(mconfig, *this),
|
||||||
m_data_out(0)
|
m_data_out(0),
|
||||||
|
m_c(0),
|
||||||
|
m_clk(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user