summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-06-09 12:24:33 +0200
committer hap <happppp@users.noreply.github.com>2020-06-09 12:24:33 +0200
commitca5651dd05d27804a6535abd251fe7d9595cb5f4 (patch)
tree18a3dbcb68b6ebb165a86b6a1ad8924dd276ea33
parent2b8ba7be7788d7b2804ad8a0251514d986a9ea5c (diff)
fix compile? untested (nw)
-rw-r--r--src/devices/cpu/m68000/m68000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m68000/m68000.h b/src/devices/cpu/m68000/m68000.h
index 314425ee028..d048f68e2cc 100644
--- a/src/devices/cpu/m68000/m68000.h
+++ b/src/devices/cpu/m68000/m68000.h
@@ -253,14 +253,14 @@ protected:
/* Callbacks to host */
write_line_delegate m_reset_instr_callback; /* Called when a RESET instruction is encountered */
- write32_delegate m_cmpild_instr_callback; /* Called when a CMPI.L #v, Dn instruction is encountered */
+ write32sm_delegate m_cmpild_instr_callback; /* Called when a CMPI.L #v, Dn instruction is encountered */
write_line_delegate m_rte_instr_callback; /* Called when a RTE instruction is encountered */
write8sm_delegate m_tas_write_callback; /* Called instead of normal write8 by the TAS instruction,
allowing writeback to be disabled globally or selectively
or other side effects to be implemented */
address_space *m_program, *m_oprogram, *m_cpu_space;
-
+
memory_access<24, 0, 0, ENDIANNESS_BIG>::cache m_oprogram8;
memory_access<24, 1, 0, ENDIANNESS_BIG>::cache m_oprogram16;
memory_access<32, 2, 0, ENDIANNESS_BIG>::cache m_oprogram32;