diff options
author | 2009-09-08 09:13:10 +0000 | |
---|---|---|
committer | 2009-09-08 09:13:10 +0000 | |
commit | 96d7f2cf3b9f7065f834ab81e190e66818f83e29 (patch) | |
tree | f5a9d8996be6d41836e9754cd4b443b88dfb773c /src/emu/cpu/m6502/m6509.h | |
parent | 3d59122bb25c14f275227ed6cd4fcfb24d15f92b (diff) |
Remove remaining references to machine->cpu[n]. Removed cpu[n] array.
Replaced with machine->firstcpu which is a fast access to the head
of the list of CPUs.
Diffstat (limited to 'src/emu/cpu/m6502/m6509.h')
-rw-r--r-- | src/emu/cpu/m6502/m6509.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/m6502/m6509.h b/src/emu/cpu/m6502/m6509.h index 0ff2dc546b4..f0b305441e0 100644 --- a/src/emu/cpu/m6502/m6509.h +++ b/src/emu/cpu/m6502/m6509.h @@ -34,7 +34,7 @@ enum }; #define M6509_IRQ_LINE M6502_IRQ_LINE -/* use cpu_set_input_line(machine->cpu[cpu], M6509_SET_OVERFLOW, level) +/* use cpu_set_input_line(cpudevice, M6509_SET_OVERFLOW, level) to change level of the so input line positiv edge sets overflow flag */ #define M6509_SET_OVERFLOW 3 |