summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/z80dma.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/machine/z80dma.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/machine/z80dma.c')
-rw-r--r--src/emu/machine/z80dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/z80dma.c b/src/emu/machine/z80dma.c
index 4e7d6850b08..9787c70e3e7 100644
--- a/src/emu/machine/z80dma.c
+++ b/src/emu/machine/z80dma.c
@@ -312,7 +312,7 @@ static void z80dma_update_status(int which)
if (dma[which].intf && dma[which].intf->cpunum >= 0)
{
//FIXME: Synchronization is done by BUSREQ!
- cpunum_set_input_line(dma[which].intf->cpunum, INPUT_LINE_HALT,
+ cpunum_set_input_line(Machine, dma[which].intf->cpunum, INPUT_LINE_HALT,
pending_transfer ? ASSERT_LINE : CLEAR_LINE);
}
}