summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ngen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ngen.cpp')
-rw-r--r--src/mame/drivers/ngen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/ngen.cpp b/src/mame/drivers/ngen.cpp
index 6bb092232bb..e85e6269254 100644
--- a/src/mame/drivers/ngen.cpp
+++ b/src/mame/drivers/ngen.cpp
@@ -446,7 +446,7 @@ WRITE16_MEMBER(ngen_state::xbus_w)
io.install_readwrite_handler(addr,addr+0xff,read16_delegate(FUNC(ngen_state::hfd_r),this),write16_delegate(FUNC(ngen_state::hfd_w),this),0xffffffff);
break;
default:
- cpu->set_input_line(INPUT_LINE_NMI,PULSE_LINE); // reached end of the modules
+ cpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero); // reached end of the modules
break;
}
if(addr != 0)
@@ -470,9 +470,9 @@ READ16_MEMBER(ngen_state::xbus_r)
break;
default:
if(m_maincpu)
- m_maincpu->set_input_line(INPUT_LINE_NMI,PULSE_LINE); // reached the end of the modules
+ m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero); // reached the end of the modules
else
- m_i386cpu->set_input_line(INPUT_LINE_NMI,PULSE_LINE);
+ m_i386cpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
ret = 0x0080;
break;
}