fixed usage of uninitialized members in t11_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 07:47:26 +00:00
parent 0bd2b9a46d
commit 4cb494b8dc

View File

@ -44,6 +44,8 @@ t11_device::t11_device(const machine_config &mconfig, const char *tag, device_t
, c_initial_mode(0) , c_initial_mode(0)
{ {
m_is_octal = true; m_is_octal = true;
memset(m_reg, 0x00, sizeof(m_reg));
memset(&m_psw, 0x00, sizeof(m_psw));
} }