fixed usage of uninitialized member in i8086_common_cpu_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 06:54:49 +00:00
parent ba61dbb67e
commit af62860bc9

View File

@ -302,6 +302,8 @@ i8086_common_cpu_device::i8086_common_cpu_device(const machine_config &mconfig,
m_Mod_RM.RM.w[i] = (WREGS)( i & 7 );
m_Mod_RM.RM.b[i] = (BREGS)reg_name[i & 7];
}
memset(&m_regs, 0x00, sizeof(m_regs));
}
void i8086_common_cpu_device::state_string_export(const device_state_entry &entry, astring &string)