mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
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:
parent
1b0482f898
commit
a712d8f940
@ -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);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user