summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sbugger.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sbugger.c')
-rw-r--r--src/mame/drivers/sbugger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/sbugger.c b/src/mame/drivers/sbugger.c
index ff510032c1d..ce583d9d4b5 100644
--- a/src/mame/drivers/sbugger.c
+++ b/src/mame/drivers/sbugger.c
@@ -208,7 +208,7 @@ INPUT_PORTS_END
WRITE_LINE_MEMBER(sbugger_state::sbugger_interrupt)
{
- cputag_set_input_line(machine(), "maincpu", I8085_RST75_LINE, state ? CLEAR_LINE : ASSERT_LINE );
+ machine().device("maincpu")->execute().set_input_line(I8085_RST75_LINE, state ? CLEAR_LINE : ASSERT_LINE );
}
static I8156_INTERFACE(i8156_intf)