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

This commit is contained in:
Oliver Stöneberg 2013-02-22 08:15:21 +00:00
parent 755552568b
commit 8173d26a63

View File

@ -158,7 +158,9 @@ inline void im6402_device::transmit()
im6402_device::im6402_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, IM6402, "Intersil IM6402", tag, owner, clock),
device_serial_interface(mconfig, *this)
device_serial_interface(mconfig, *this),
m_rrc_count(0),
m_trc_count(0)
{
}