diff options
author | 2020-05-30 21:59:07 +0200 | |
---|---|---|
committer | 2020-05-30 21:59:07 +0200 | |
commit | 22fec9c3c5204b02e52d99186a0caefa019c5cce (patch) | |
tree | dc03b3f1beb98e6db4da279f0674895a9fb4ba2e | |
parent | 9f5ab3f23725d474cd55bf1479a157fb7bc39c63 (diff) |
tms9995.cpp: fixed different behaviour of the tutor driver in the devnoclear branch (nw)
-rw-r--r-- | src/devices/cpu/tms9900/tms9995.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/cpu/tms9900/tms9995.cpp b/src/devices/cpu/tms9900/tms9995.cpp index 696b04fb870..96d88ed2a6c 100644 --- a/src/devices/cpu/tms9900/tms9995.cpp +++ b/src/devices/cpu/tms9900/tms9995.cpp @@ -194,7 +194,7 @@ enum void tms9995_device::device_start() { - // TODO: Restore save state suport + // TODO: Restore save state support m_prgspace = &space(AS_PROGRAM); m_setaddr = has_space(AS_SETADDRESS) ? &space(AS_SETADDRESS) : nullptr; @@ -216,6 +216,8 @@ void tms9995_device::device_start() m_nmi_active = false; m_int_overflow = false; + m_reset = false; + m_idle_state = false; m_source_value = 0; |