summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cortex.cpp
diff options
context:
space:
mode:
author Michael Zapf <Michael.Zapf@mizapf.de>2017-12-23 00:46:12 +0100
committer Michael Zapf <Michael.Zapf@mizapf.de>2017-12-23 00:53:53 +0100
commita8cbdbc89cfcec17a0a288a1d5f96118ef4f455f (patch)
tree14b79c4307deade573cd3ae89f6909b11bb5bf0f /src/mame/drivers/cortex.cpp
parent50ee57f1b321318d746b9f27398fb6afbbba19e4 (diff)
tms9995: Fixed READY check on RESET (auto-waitstate)
Diffstat (limited to 'src/mame/drivers/cortex.cpp')
-rw-r--r--src/mame/drivers/cortex.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/cortex.cpp b/src/mame/drivers/cortex.cpp
index 6281b1e88aa..ea8a8d05378 100644
--- a/src/mame/drivers/cortex.cpp
+++ b/src/mame/drivers/cortex.cpp
@@ -162,6 +162,7 @@ void cortex_state::machine_reset()
membank("bankr0")->set_entry(1); // point at rom
membank("bankw0")->set_entry(0); // always write to ram
m_maincpu->ready_line(ASSERT_LINE);
+ m_maincpu->reset_line(ASSERT_LINE);
}
DRIVER_INIT_MEMBER( cortex_state, init )