fixed uninitialized members in src/emu/cpu/cosmac/cosmac.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-09 09:32:34 +00:00
parent 5a03cd5301
commit f36544c50b

View File

@ -305,6 +305,9 @@ void cosmac_device::device_start()
void cosmac_device::device_reset()
{
m_ie = 0;
m_q = 0;
m_df = 0;
memset(m_r, 0, sizeof(m_r));
}