summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/m20_8086.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/m20_8086.cpp')
-rw-r--r--src/mame/machine/m20_8086.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/m20_8086.cpp b/src/mame/machine/m20_8086.cpp
index 5902c835e6c..e99bf262da6 100644
--- a/src/mame/machine/m20_8086.cpp
+++ b/src/mame/machine/m20_8086.cpp
@@ -104,13 +104,13 @@ WRITE16_MEMBER(m20_8086_device::handshake_w)
{
m_8086->set_input_line(INPUT_LINE_HALT, ASSERT_LINE);
m_maincpu->set_input_line(INPUT_LINE_HALT, CLEAR_LINE);
- m_maincpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_8086_halt = true;
}
else
{
m_8086->set_input_line(INPUT_LINE_HALT, CLEAR_LINE);
- m_8086->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
+ m_8086->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE);
m_8086_halt = false;
}