mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed usage of uninitialized members in s2650_device (nw)
This commit is contained in:
parent
a0a0884810
commit
95d9577ab2
@ -34,9 +34,11 @@ const device_type S2650 = &device_creator<s2650_device>;
|
||||
s2650_device::s2650_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: cpu_device(mconfig, S2650, "S2650", tag, owner, clock, "s2650", __FILE__ )
|
||||
, m_program_config("program", ENDIANNESS_LITTLE, 8, 15)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, 8, 9),
|
||||
m_flag_handler(*this)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, 8, 9)
|
||||
, m_flag_handler(*this)
|
||||
, m_debugger_temp(0)
|
||||
{
|
||||
memset(m_reg, 0x00, sizeof(m_reg));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user