diff options
author | 2008-01-24 14:14:21 +0000 | |
---|---|---|
committer | 2008-01-24 14:14:21 +0000 | |
commit | 3815ec44e1cbc224e5bfdd534208d369198703cd (patch) | |
tree | 1c24321d578937ec4b6c9eac8d4650d5c32b9725 /src/emu/cpu/cp1610/cp1610.c | |
parent | f7c5c67e2ef8db35b7171b955f524029b9f75d75 (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/cp1610/cp1610.c')
-rw-r--r-- | src/emu/cpu/cp1610/cp1610.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/cp1610/cp1610.c b/src/emu/cpu/cp1610/cp1610.c index aa1c6485a59..a8a96a484b1 100644 --- a/src/emu/cpu/cp1610/cp1610.c +++ b/src/emu/cpu/cp1610/cp1610.c @@ -1548,7 +1548,7 @@ static void cp1610_xori(int d) static void cp1610_reset(void) { /* This is how we set the reset vector */ - cpunum_set_input_line(cpu_getactivecpu(), CP1610_RESET, PULSE_LINE); + cpunum_set_input_line(Machine, cpu_getactivecpu(), CP1610_RESET, PULSE_LINE); } /*************************************************** |