summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m68000/m68000.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-10-30 17:00:00 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-10-30 17:00:00 -0400
commitfe1612aa8120d3c3e4fcb97ac070b44360db3a7d (patch)
treefd73285d86a7ef85dbd7c81787a43a8b1c5bf225 /src/devices/cpu/m68000/m68000.h
parent7c6fdaf499f910a01210443326fb9e11e9fed928 (diff)
scc68070: Add more accurate cycle counts, distinguished from MC68000 and MC68010
Diffstat (limited to 'src/devices/cpu/m68000/m68000.h')
-rw-r--r--src/devices/cpu/m68000/m68000.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m68000/m68000.h b/src/devices/cpu/m68000/m68000.h
index 13db7934454..6fd29612ef6 100644
--- a/src/devices/cpu/m68000/m68000.h
+++ b/src/devices/cpu/m68000/m68000.h
@@ -165,7 +165,7 @@ public:
template <typename... T> void set_tas_write_callback(T &&... args) { m_tas_write_callback.set(std::forward<T>(args)...); }
u16 get_fc();
void set_hmmu_enable(int enable);
- int get_pmmu_enable() {return m_pmmu_enabled;};
+ int get_pmmu_enable() const {return m_pmmu_enabled;};
void set_fpu_enable(int enable);
void set_buserror_details(u32 fault_addr, u8 rw, u8 fc);
void disable_interrupt_mixer() { m_interrupt_mixer = false; }