diff options
Diffstat (limited to 'src/devices/cpu/g65816/g65816.h')
-rw-r--r-- | src/devices/cpu/g65816/g65816.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/cpu/g65816/g65816.h b/src/devices/cpu/g65816/g65816.h index d37017a5de8..5f0c5183ea7 100644 --- a/src/devices/cpu/g65816/g65816.h +++ b/src/devices/cpu/g65816/g65816.h @@ -233,9 +233,10 @@ protected: unsigned m_fastROM; /* SNES specific */ unsigned m_ir; /* Instruction Register */ unsigned m_irq_delay; /* delay 1 instruction before checking irq */ - address_space *m_data_space; - memory_access_cache<0, 0, ENDIANNESS_LITTLE> *m_program_cache; - memory_access_cache<0, 0, ENDIANNESS_LITTLE> *m_opcode_cache; + memory_access<24, 0, 0, ENDIANNESS_LITTLE>::cache m_program; + memory_access<24, 0, 0, ENDIANNESS_LITTLE>::cache m_opcode; + memory_access<24, 0, 0, ENDIANNESS_LITTLE>::specific m_data; + unsigned m_stopped; /* Sets how the CPU is stopped */ const opcode_func* m_opcodes; get_reg_func m_get_reg; |