diff options
Diffstat (limited to 'src/mess/drivers/ht68k.c')
-rw-r--r-- | src/mess/drivers/ht68k.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/drivers/ht68k.c b/src/mess/drivers/ht68k.c index c8dd0dcf98b..87658544480 100644 --- a/src/mess/drivers/ht68k.c +++ b/src/mess/drivers/ht68k.c @@ -80,7 +80,8 @@ void ht68k_state::machine_reset() static void duart_irq_handler(device_t *device, int state, UINT8 vector) { - device->machine().device("maincpu")->execute().set_input_line_and_vector(M68K_IRQ_3, state, M68K_INT_ACK_AUTOVECTOR); + ht68k_state *drvstate = device->machine().driver_data<ht68k_state>(); + drvstate->m_maincpu->set_input_line_and_vector(M68K_IRQ_3, state, M68K_INT_ACK_AUTOVECTOR); } static void duart_tx(device_t *device, int channel, UINT8 data) |