diff options
author | 2008-06-26 15:34:42 +0000 | |
---|---|---|
committer | 2008-06-26 15:34:42 +0000 | |
commit | 652fc279ae6e7ae2c113ad0cb48d9e71fce0e05a (patch) | |
tree | 3c606fe9d0598299461bb4e1b92b32c2d10bfc3e /src/emu/machine/8237dma.c | |
parent | ba2fb8554b740f9f976501647d0b6c1307c17971 (diff) |
From: Oliver Stoeneberg [mailto:oliverst@online.de]
Subject: another Machine -> machine cleanup
This cleans up most of the Machine stuff in src/emu/machine. There is
a bit left to clean up, but it's mostly stuck at some interfaces now.
Diffstat (limited to 'src/emu/machine/8237dma.c')
-rw-r--r-- | src/emu/machine/8237dma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/machine/8237dma.c b/src/emu/machine/8237dma.c index c0e736ad46d..05c3d315697 100644 --- a/src/emu/machine/8237dma.c +++ b/src/emu/machine/8237dma.c @@ -19,7 +19,6 @@ **********************************************************************/ #include "driver.h" -#include "deprecat.h" #include "memconv.h" #include "8237dma.h" @@ -177,7 +176,7 @@ static void dma8237_update_status(const device_config *device) /* set the halt line */ if (dma8237->intf && dma8237->intf->cpunum >= 0) { - cpunum_set_input_line(Machine, dma8237->intf->cpunum, INPUT_LINE_HALT, + cpunum_set_input_line(device->machine, dma8237->intf->cpunum, INPUT_LINE_HALT, pending_transfer ? ASSERT_LINE : CLEAR_LINE); } |