mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
fixed uninitialized variables in src/emu/cpu/tms9900/tms9900.c (nw)
This commit is contained in:
parent
9ea02a3be0
commit
bb56f83e17
1 changed files with 3 additions and 0 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue