fixed uninitialized variables in src/emu/cpu/tms9900/tms9900.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 16:10:50 +00:00
parent 9ea02a3be0
commit bb56f83e17

View file

@ -181,6 +181,9 @@ void tms99xx_device::device_start()
// set our instruction counter
m_icountptr = &m_icount;
m_state_any = 0;
PC = 0;
// add the states for the debugger
for (int i=0; i < 20; i++)
{