From a712d8f9403611d0a15e16f3f6c3859405d99c18 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 25 Jul 2017 18:54:25 -0400 Subject: namcoio: Don't pulse the reset line when it's already being asserted (nw) This allows mappy and pacnpal to boot again. --- src/mame/machine/namcoio.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/machine/namcoio.cpp b/src/mame/machine/namcoio.cpp index c94ec7d6dba..875328c04ac 100644 --- a/src/mame/machine/namcoio.cpp +++ b/src/mame/machine/namcoio.cpp @@ -176,7 +176,8 @@ void namcoio_device::device_reset() for (auto & elem : m_ram) elem = 0; - set_reset_line(PULSE_LINE); + if (m_reset != ASSERT_LINE) + set_reset_line(PULSE_LINE); } /***************************************************************************** -- cgit v1.2.3