megaplay.cpp: Fix mistake (nw)

This commit is contained in:
AJR 2018-05-20 09:52:16 -04:00
parent 799cf32029
commit 603ae89155

View File

@ -544,7 +544,7 @@ READ8_MEMBER(mplay_state::bios_6404_r)
WRITE8_MEMBER(mplay_state::bios_6404_w)
{
if(((m_bios_6404 & 0x0c) == 0x00) && ((data & 0x0c) == 0x0c))
m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
m_bios_6404 = data;
// logerror("BIOS: 0x6404 write: 0x%02x\n", data);