summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/msx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/msx.c')
-rw-r--r--src/mess/machine/msx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/msx.c b/src/mess/machine/msx.c
index dbfd059ef9c..ae0e60767d7 100644
--- a/src/mess/machine/msx.c
+++ b/src/mess/machine/msx.c
@@ -358,7 +358,7 @@ DEVICE_IMAGE_UNLOAD (msx_cart)
void msx_vdp_interrupt(device_t *, v99x8_device &device, int i)
{
- cputag_set_input_line (device.machine(), "maincpu", 0, (i ? HOLD_LINE : CLEAR_LINE));
+ device.machine().device("maincpu")->execute().set_input_line(0, (i ? HOLD_LINE : CLEAR_LINE));
}
void msx_state::msx_ch_reset_core ()