]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
68030 memory cycle exact only mode data cache bug fix.
authorToni Wilen <twilen@winuae.net>
Wed, 21 Jun 2017 16:54:57 +0000 (19:54 +0300)
committerToni Wilen <twilen@winuae.net>
Wed, 21 Jun 2017 16:54:57 +0000 (19:54 +0300)
include/newcpu.h

index 3106aa62f556936c7a1d7636a2d5378ba742c9a0..723f52baa97467bfe7394e47522f4c7d29b803aa 100644 (file)
@@ -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;
 }