summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superqix.c
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2009-05-01 15:01:13 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2009-05-01 15:01:13 +0000
commitf932255eb432ef6d27c6b454a3f62c46700bfb13 (patch)
tree44985fefc9819ae92e918cd606c1c75c28234996 /src/mame/drivers/superqix.c
parentf59c21a9ecfe7e84acf9675b2bce8ff40eb0edf6 (diff)
number-to-tag conversions for drivers starting with 'S': remaining changes should not involve anymore so many drivers.
Diffstat (limited to 'src/mame/drivers/superqix.c')
-rw-r--r--src/mame/drivers/superqix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/superqix.c b/src/mame/drivers/superqix.c
index 3b8de6bbd11..b40d03c7aa8 100644
--- a/src/mame/drivers/superqix.c
+++ b/src/mame/drivers/superqix.c
@@ -295,7 +295,7 @@ static WRITE8_HANDLER( mcu_p3_w )
static READ8_HANDLER( nmi_ack_r )
{
- cpu_set_input_line(space->machine->cpu[0], INPUT_LINE_NMI, CLEAR_LINE);
+ cputag_set_input_line(space->machine, "maincpu", INPUT_LINE_NMI, CLEAR_LINE);
return 0;
}
@@ -349,7 +349,7 @@ static TIMER_CALLBACK( delayed_z80_mcu_w )
logerror("Z80 sends command %02x\n",param);
from_z80 = param;
from_mcu_pending = 0;
- cpu_set_input_line(machine->cpu[1], 0, HOLD_LINE);
+ cputag_set_input_line(machine, "mcu", 0, HOLD_LINE);
cpuexec_boost_interleave(machine, attotime_zero, ATTOTIME_IN_USEC(200));
}