fixed usage of uninitialized member in i8086_common_cpu_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-25 08:54:47 +00:00
parent 0e6f5c9ab1
commit b558084268

View File

@ -304,6 +304,7 @@ i8086_common_cpu_device::i8086_common_cpu_device(const machine_config &mconfig,
}
memset(&m_regs, 0x00, sizeof(m_regs));
memset(m_sregs, 0x00, sizeof(m_sregs));
}
void i8086_common_cpu_device::state_string_export(const device_state_entry &entry, astring &string)