fixed usage of uninitialized member in f8_cpu_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-25 07:26:35 +00:00
parent d7d614c1a9
commit fca2615f3a

View File

@ -82,6 +82,7 @@ f8_cpu_device::f8_cpu_device(const machine_config &mconfig, const char *tag, dev
, m_a(0)
, m_w(0)
, m_is(0)
, m_pc(0)
{
memset(m_r, 0x00, sizeof(m_r));
}