From: Toni Wilen Date: Wed, 21 Jun 2017 16:54:57 +0000 (+0300) Subject: 68030 memory cycle exact only mode data cache bug fix. X-Git-Tag: 3600~190 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=9834ec39857445f6d15e70276db585b390a75641;p=francis%2Fwinuae.git 68030 memory cycle exact only mode data cache bug fix. --- 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; }