summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-04-10 18:32:35 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-04-10 18:32:35 -0400
commitf763dbcac6c146272679198ec35c4361ecb62edc (patch)
tree3455ad92b40db83205b265f0a1a4d89391a7d70c
parenta05c1c6d0903ca1d4458ff1e8fdac9eca6e82fec (diff)
sdk85: Fix the RESET TRAP problem once again (nw)
-rw-r--r--src/mame/drivers/sdk85.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/sdk85.cpp b/src/mame/drivers/sdk85.cpp
index 2495cdd1f8f..93c9352a26d 100644
--- a/src/mame/drivers/sdk85.cpp
+++ b/src/mame/drivers/sdk85.cpp
@@ -103,7 +103,7 @@ private:
void sdk85_state::machine_reset()
{
// Prevent spurious TRAP when system is reset
- m_maincpu->reset();
+ m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
}
WRITE_LINE_MEMBER(sdk85_state::reset_w)