mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
fixed usage of uninitialized members in lc8670_cpu_device (nw)
This commit is contained in:
parent
3e78a8c430
commit
829aa6f737
@ -179,6 +179,9 @@ lc8670_cpu_device::lc8670_cpu_device(const machine_config &mconfig, const char *
|
|||||||
m_ppc(0),
|
m_ppc(0),
|
||||||
m_bankswitch_func(*this)
|
m_bankswitch_func(*this)
|
||||||
{
|
{
|
||||||
|
memset(m_sfr, 0x00, sizeof(m_sfr));
|
||||||
|
memset(m_timer0, 0x00, sizeof(m_timer0));
|
||||||
|
memset(m_timer1, 0x00, sizeof(m_timer1));
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user