summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/mk1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/mk1.c')
-rw-r--r--src/mess/drivers/mk1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/mk1.c b/src/mess/drivers/mk1.c
index 9c4e4970de9..037ce43924d 100644
--- a/src/mess/drivers/mk1.c
+++ b/src/mess/drivers/mk1.c
@@ -166,7 +166,7 @@ static MACHINE_START( mk1 )
static void mk1_interrupt( device_t *device, UINT16 addr, int level )
{
- device_set_input_line_vector(device->machine().device("maincpu"), F8_INPUT_LINE_INT_REQ, addr );
+ device->machine().device("maincpu")->execute().set_input_line_vector(F8_INPUT_LINE_INT_REQ, addr );
device->machine().device("maincpu")->execute().set_input_line(F8_INPUT_LINE_INT_REQ, level ? ASSERT_LINE : CLEAR_LINE );
}