mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
fixed uninitialized members in src/emu/cpu/cosmac/cosmac.c (nw)
This commit is contained in:
parent
5a03cd5301
commit
f36544c50b
@ -305,6 +305,9 @@ void cosmac_device::device_start()
|
|||||||
void cosmac_device::device_reset()
|
void cosmac_device::device_reset()
|
||||||
{
|
{
|
||||||
m_ie = 0;
|
m_ie = 0;
|
||||||
|
m_q = 0;
|
||||||
|
m_df = 0;
|
||||||
|
memset(m_r, 0, sizeof(m_r));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user