summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fromanc2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fromanc2.cpp')
-rw-r--r--src/mame/drivers/fromanc2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/fromanc2.cpp b/src/mame/drivers/fromanc2.cpp
index dbc11f96a48..e8ecc854cbc 100644
--- a/src/mame/drivers/fromanc2.cpp
+++ b/src/mame/drivers/fromanc2.cpp
@@ -40,7 +40,7 @@ WRITE16_MEMBER(fromanc2_state::sndcmd_w)
m_soundlatch->write(space, offset, (data >> 8) & 0xff); // 1P (LEFT)
m_soundlatch2->write(space, offset, data & 0xff); // 2P (RIGHT)
- m_audiocpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_sndcpu_nmi_flag = 0;
}
@@ -103,7 +103,7 @@ WRITE16_MEMBER(fromanc2_state::subcpu_w)
READ16_MEMBER(fromanc2_state::subcpu_r)
{
- m_subcpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_subcpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_subcpu_nmi_flag = 0;
return (m_datalatch_2h << 8) | m_datalatch_2l;