summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/concept.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/concept.c')
-rw-r--r--src/mess/machine/concept.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/concept.c b/src/mess/machine/concept.c
index bef11c88cf6..39e80c95c79 100644
--- a/src/mess/machine/concept.c
+++ b/src/mess/machine/concept.c
@@ -120,10 +120,10 @@ static void concept_set_interrupt(running_machine &machine, int level, int state
if (final_level)
/* assert interrupt */
- machine.device("maincpu")->execute().set_input_line_and_vector(M68K_IRQ_1 + final_level - 1, ASSERT_LINE, M68K_INT_ACK_AUTOVECTOR);
+ drvstate->m_maincpu->set_input_line_and_vector(M68K_IRQ_1 + final_level - 1, ASSERT_LINE, M68K_INT_ACK_AUTOVECTOR);
else
/* clear all interrupts */
- machine.device("maincpu")->execute().set_input_line_and_vector(M68K_IRQ_1, CLEAR_LINE, M68K_INT_ACK_AUTOVECTOR);
+ drvstate->m_maincpu->set_input_line_and_vector(M68K_IRQ_1, CLEAR_LINE, M68K_INT_ACK_AUTOVECTOR);
}
INLINE void post_in_KeyQueue(concept_state *state, int keycode)