summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/playch10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/playch10.cpp')
-rw-r--r--src/mame/drivers/playch10.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/playch10.cpp b/src/mame/drivers/playch10.cpp
index 235b73b9e70..e7f6487ce03 100644
--- a/src/mame/drivers/playch10.cpp
+++ b/src/mame/drivers/playch10.cpp
@@ -638,9 +638,9 @@ WRITE_LINE_MEMBER(playch10_state::vblank_irq)
{
/* LS161A, Sheet 1 - bottom left of Z80 */
if (!m_pc10_dog_di && !m_pc10_nmi_enable)
- m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
else if (m_pc10_nmi_enable)
- m_maincpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}
}