mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
fixed uninitialized members in src/emu/machine/im6402.c (nw)
This commit is contained in:
parent
755552568b
commit
8173d26a63
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user