mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed usage of uninitialized member in i8086_common_cpu_device (nw)
This commit is contained in:
parent
0e6f5c9ab1
commit
b558084268
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user