summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/mephisto.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/mephisto.c')
-rw-r--r--src/mess/drivers/mephisto.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/mephisto.c b/src/mess/drivers/mephisto.c
index c0a25d1e613..738f3fdb953 100644
--- a/src/mess/drivers/mephisto.c
+++ b/src/mess/drivers/mephisto.c
@@ -333,7 +333,7 @@ static TIMER_DEVICE_CALLBACK( update_nmi )
if (state->m_allowNMI)
{
state->m_allowNMI = 0;
- cputag_set_input_line(timer.machine(), "maincpu", INPUT_LINE_NMI,PULSE_LINE);
+ timer.machine().device("maincpu")->execute().set_input_line(INPUT_LINE_NMI,PULSE_LINE);
}
beep_set_state(state->m_beep, state->m_led_status&64?1:0);
}
@@ -341,15 +341,15 @@ static TIMER_DEVICE_CALLBACK( update_nmi )
static TIMER_DEVICE_CALLBACK( update_nmi_r5 )
{
mephisto_state *state = timer.machine().driver_data<mephisto_state>();
- cputag_set_input_line(timer.machine(), "maincpu", INPUT_LINE_NMI,PULSE_LINE);
+ timer.machine().device("maincpu")->execute().set_input_line(INPUT_LINE_NMI,PULSE_LINE);
beep_set_state(state->m_beep, state->m_led_status&64?1:0);
}
static TIMER_DEVICE_CALLBACK( update_irq ) //only mm2
{
mephisto_state *state = timer.machine().driver_data<mephisto_state>();
- cputag_set_input_line(timer.machine(), "maincpu", M6502_IRQ_LINE, ASSERT_LINE);
- cputag_set_input_line(timer.machine(), "maincpu", M6502_IRQ_LINE, CLEAR_LINE);
+ timer.machine().device("maincpu")->execute().set_input_line(M6502_IRQ_LINE, ASSERT_LINE);
+ timer.machine().device("maincpu")->execute().set_input_line(M6502_IRQ_LINE, CLEAR_LINE);
beep_set_state(state->m_beep, state->m_led_status&64?1:0);
}