summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/v60/v60.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/v60/v60.c')
-rw-r--r--src/emu/cpu/v60/v60.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/v60/v60.c b/src/emu/cpu/v60/v60.c
index c712b013dba..9d3eeae0379 100644
--- a/src/emu/cpu/v60/v60.c
+++ b/src/emu/cpu/v60/v60.c
@@ -353,9 +353,9 @@ static CPU_INIT( v60 )
cpustate->fetch_xor = BYTE_XOR_LE(0);
cpustate->start_pc = 0xfffff0;
cpustate->device = device;
- cpustate->program = device->space(AS_PROGRAM);
+ cpustate->program = &device->space(AS_PROGRAM);
cpustate->direct = &cpustate->program->direct();
- cpustate->io = device->space(AS_IO);
+ cpustate->io = &device->space(AS_IO);
}
static CPU_INIT( v70 )
@@ -369,9 +369,9 @@ static CPU_INIT( v70 )
cpustate->fetch_xor = BYTE4_XOR_LE(0);
cpustate->start_pc = 0xfffffff0;
cpustate->device = device;
- cpustate->program = device->space(AS_PROGRAM);
+ cpustate->program = &device->space(AS_PROGRAM);
cpustate->direct = &cpustate->program->direct();
- cpustate->io = device->space(AS_IO);
+ cpustate->io = &device->space(AS_IO);
}
static CPU_RESET( v60 )