summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/8042kbdc.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/8042kbdc.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/8042kbdc.c')
-rw-r--r--src/emu/machine/8042kbdc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/8042kbdc.c b/src/emu/machine/8042kbdc.c
index bb8b3555ab1..43ed9a0bd4f 100644
--- a/src/emu/machine/8042kbdc.c
+++ b/src/emu/machine/8042kbdc.c
@@ -584,7 +584,7 @@ WRITE8_HANDLER(kbdc8042_8_w)
* the bits low set in the command byte. The only pulse that has
* an effect currently is bit 0, which pulses the CPU's reset line
*/
- cpunum_set_input_line(0, INPUT_LINE_RESET, PULSE_LINE);
+ cpunum_set_input_line(Machine, 0, INPUT_LINE_RESET, PULSE_LINE);
at_8042_set_outport(kbdc8042.outport | 0x02, 0);
break;
}