namcoio: Don't pulse the reset line when it's already being asserted (nw)

This allows mappy and pacnpal to boot again.
This commit is contained in:
AJR 2017-07-25 18:54:25 -04:00
parent 1b0482f898
commit a712d8f940

View File

@ -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);
}
/*****************************************************************************