summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/galaxian.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/galaxian.cpp')
-rw-r--r--src/mame/drivers/galaxian.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/galaxian.cpp b/src/mame/drivers/galaxian.cpp
index af674ad60e1..079c59139b6 100644
--- a/src/mame/drivers/galaxian.cpp
+++ b/src/mame/drivers/galaxian.cpp
@@ -696,7 +696,7 @@ INTERRUPT_GEN_MEMBER(galaxian_state::fakechange_interrupt_gen)
m_tenspot_current_game++;
m_tenspot_current_game%=10;
tenspot_set_game_bank(m_tenspot_current_game, 1);
- m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
}
}
@@ -1242,7 +1242,7 @@ INPUT_CHANGED_MEMBER(galaxian_state::gmgalax_game_changed)
galaxian_stars_enable_w(space, 0, 0);
/* reset the CPU */
- m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
+ m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
}
@@ -1422,7 +1422,7 @@ READ8_MEMBER(galaxian_state::jumpbug_protection_r)
WRITE8_MEMBER(galaxian_state::checkman_sound_command_w)
{
m_soundlatch->write(space, 0, data);
- m_audiocpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
+ m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}