summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/8257dma.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/8257dma.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/8257dma.c')
-rw-r--r--src/emu/machine/8257dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/8257dma.c b/src/emu/machine/8257dma.c
index 8f56bc965c3..187f3867d94 100644
--- a/src/emu/machine/8257dma.c
+++ b/src/emu/machine/8257dma.c
@@ -234,7 +234,7 @@ static void dma8257_update_status(int which)
/* set the halt line */
if (dma[which].intf && dma[which].intf->cpunum >= 0)
{
- 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);
}