summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/solomon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/solomon.cpp')
-rw-r--r--src/mame/drivers/solomon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/solomon.cpp b/src/mame/drivers/solomon.cpp
index 9f3c5d9e3ab..cb6588ee33d 100644
--- a/src/mame/drivers/solomon.cpp
+++ b/src/mame/drivers/solomon.cpp
@@ -20,7 +20,7 @@ driver by Mirko Buffoni
WRITE8_MEMBER(solomon_state::solomon_sh_command_w)
{
m_soundlatch->write(space, offset, data);
- m_audiocpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}
/* this is checked on the title screen and when you reach certain scores in the game
@@ -204,7 +204,7 @@ GFXDECODE_END
INTERRUPT_GEN_MEMBER(solomon_state::vblank_irq)
{
if(m_nmi_mask)
- device.execute().set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ device.execute().pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}