fixed usage of uninitialized members in tms32010_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-25 09:41:27 +00:00
parent 91ee265a77
commit 58be5d83e9

View File

@ -853,6 +853,9 @@ void tms32010_device::device_start()
m_opcode.d = 0;
m_oldacc.d = 0;
m_memaccess = 0;
m_PC = 0;
m_STR = 0;
m_ACC.d = 0;
state_add( TMS32010_PC, "PC", m_PC).formatstr("%04X");
state_add( TMS32010_STR, "STR", m_STR).formatstr("%04X");