From 66686078e1c6bad4b549c0ab05c3be999ce34749 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Sat, 6 Sep 2014 11:15:26 +0200 Subject: [PATCH] atari:ikbd: Fix for Coldfire CPU. Contributed by Vincent Riviere. --- src/video/ataricommon/SDL_ikbdinterrupt.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/ataricommon/SDL_ikbdinterrupt.S b/src/video/ataricommon/SDL_ikbdinterrupt.S index 21facc80a..569515d25 100644 --- a/src/video/ataricommon/SDL_ikbdinterrupt.S +++ b/src/video/ataricommon/SDL_ikbdinterrupt.S @@ -246,12 +246,12 @@ ikbd_no_mouse: #if defined(__mcoldfire__) andl #0x7f,d1 btst #7,d0 - spl d0 + seq d0 moveb d0,a0@(0,d1:l) #else andw #0x7f,d1 - tas d0 - spl a0@(0,d1:w) + btst #7,d0 + seq a0@(0,d1:w) #endif | End of interrupt