summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/tms34010/tms34010.c
diff options
context:
space:
mode:
author Zsolt Vasvari <zsoltvas@mamedev.org>2008-01-24 14:14:21 +0000
committer Zsolt Vasvari <zsoltvas@mamedev.org>2008-01-24 14:14:21 +0000
commit3815ec44e1cbc224e5bfdd534208d369198703cd (patch)
tree1c24321d578937ec4b6c9eac8d4650d5c32b9725 /src/emu/cpu/tms34010/tms34010.c
parentf7c5c67e2ef8db35b7171b955f524029b9f75d75 (diff)
- Changed cpunum_set_input_line* functions to take running_machine as an argument
- Added that fix the arm7dasm, otherwise I couldn't compile the code
Diffstat (limited to 'src/emu/cpu/tms34010/tms34010.c')
-rw-r--r--src/emu/cpu/tms34010/tms34010.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/tms34010/tms34010.c b/src/emu/cpu/tms34010/tms34010.c
index 43566f063dc..6a5cca67cb5 100644
--- a/src/emu/cpu/tms34010/tms34010.c
+++ b/src/emu/cpu/tms34010/tms34010.c
@@ -1210,7 +1210,7 @@ WRITE16_HANDLER( tms34010_io_register_w )
/* if the CPU is halting itself, stop execution right away */
if ((data & 0x8000) && !external_host_access)
tms34010_ICount = 0;
- cpunum_set_input_line(cpunum, INPUT_LINE_HALT, (data & 0x8000) ? ASSERT_LINE : CLEAR_LINE);
+ cpunum_set_input_line(Machine, cpunum, INPUT_LINE_HALT, (data & 0x8000) ? ASSERT_LINE : CLEAR_LINE);
/* NMI issued? */
if (data & 0x0100)
@@ -1361,7 +1361,7 @@ WRITE16_HANDLER( tms34020_io_register_w )
/* if the CPU is halting itself, stop execution right away */
if ((data & 0x8000) && !external_host_access)
tms34010_ICount = 0;
- cpunum_set_input_line(cpunum, INPUT_LINE_HALT, (data & 0x8000) ? ASSERT_LINE : CLEAR_LINE);
+ cpunum_set_input_line(Machine, cpunum, INPUT_LINE_HALT, (data & 0x8000) ? ASSERT_LINE : CLEAR_LINE);
/* NMI issued? */
if (data & 0x0100)