summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/berzerk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/berzerk.cpp')
-rw-r--r--src/mame/drivers/berzerk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/berzerk.cpp b/src/mame/drivers/berzerk.cpp
index 1f640a2bfec..0bb7fda4b02 100644
--- a/src/mame/drivers/berzerk.cpp
+++ b/src/mame/drivers/berzerk.cpp
@@ -312,7 +312,7 @@ TIMER_CALLBACK_MEMBER(berzerk_state::nmi_callback)
/* pulse the NMI line if enabled */
if (m_nmi_enabled)
- m_maincpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
/* set up for next interrupt */
next_nmi_number = (nmi_number + 1) % NMIS_PER_FRAME;