From 9834ec39857445f6d15e70276db585b390a75641 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Wed, 21 Jun 2017 19:54:57 +0300 Subject: [PATCH] 68030 memory cycle exact only mode data cache bug fix. --- include/newcpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/newcpu.h b/include/newcpu.h index 3106aa62..723f52ba 100644 --- a/include/newcpu.h +++ b/include/newcpu.h @@ -436,12 +436,12 @@ STATIC_INLINE uae_u32 next_iilongi (void) STATIC_INLINE void m68k_do_bsri(uaecptr oldpc, uae_s32 offset) { m68k_areg(regs, 7) -= 4; - put_long(m68k_areg(regs, 7), oldpc); + x_put_long(m68k_areg(regs, 7), oldpc); m68k_incpci(offset); } STATIC_INLINE void m68k_do_rtsi(void) { - uae_u32 newpc = get_long(m68k_areg(regs, 7)); + uae_u32 newpc = x_get_long(m68k_areg(regs, 7)); m68k_setpci(newpc); m68k_areg(regs, 7) += 4; } -- 2.47.3