From cc70a8e69f3a9876c8339db2646acad8d935d925 Mon Sep 17 00:00:00 2001 From: arbee Date: Thu, 23 May 2019 07:54:58 -0400 Subject: m68000: fixed the real MMU problem Domain/OS was having; Mac still works. [Hans Ostermeyer] --- src/devices/cpu/m68000/m68kmmu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/m68000/m68kmmu.h b/src/devices/cpu/m68000/m68kmmu.h index 8de83bace04..c36aa94a749 100644 --- a/src/devices/cpu/m68000/m68kmmu.h +++ b/src/devices/cpu/m68000/m68kmmu.h @@ -199,7 +199,7 @@ void pmmu_atc_flush_fc_ea(const u16 modes) { const int fcmask = (modes >> 5) & 7; const int fc = fc_from_modes(modes) & fcmask; - const int ps = (m_mmu_tc >> 16) & 0xf; + const int ps = (m_mmu_tc >> 20) & 0xf; const int mode = (modes >> 10) & 7; u32 ea; -- cgit v1.2.3