mirror of
https://github.com/holub/mame
synced 2025-05-06 06:14:45 +03:00
fixed usage of uninitialized members in tms32010_device (nw)
This commit is contained in:
parent
91ee265a77
commit
58be5d83e9
@ -853,6 +853,9 @@ void tms32010_device::device_start()
|
|||||||
m_opcode.d = 0;
|
m_opcode.d = 0;
|
||||||
m_oldacc.d = 0;
|
m_oldacc.d = 0;
|
||||||
m_memaccess = 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_PC, "PC", m_PC).formatstr("%04X");
|
||||||
state_add( TMS32010_STR, "STR", m_STR).formatstr("%04X");
|
state_add( TMS32010_STR, "STR", m_STR).formatstr("%04X");
|
||||||
|
Loading…
Reference in New Issue
Block a user