# HG changeset patch # User Patrice Mandin # Date 1257542236 0 # Node ID a52047c790a2577a794f4cb7fb9de6f868fbc556 # Parent 124629b76853514be760404084184e022afb6e6b Disable C2P routines for Coldfire CPUs diff -r 124629b76853 -r a52047c790a2 src/video/ataricommon/SDL_ataric2p.S --- a/src/video/ataricommon/SDL_ataric2p.S Fri Nov 06 18:06:01 2009 +0000 +++ b/src/video/ataricommon/SDL_ataric2p.S Fri Nov 06 21:17:16 2009 +0000 @@ -38,6 +38,7 @@ .text _SDL_Atari_C2pConvert8: +#if !defined(__mcoldfire__) movel sp@(4),c2p_source movel sp@(8),c2p_dest movel sp@(12),c2p_width @@ -283,11 +284,13 @@ bne SDL_Atari_C2p8_rowloop moveml sp@+,d2-d7/a2-a6 +#endif rts /* ------------ Conversion C2P, 4 bits ------------ */ _SDL_Atari_C2pConvert4: +#if !defined(__mcoldfire__) movel sp@(4),c2p_source movel sp@(8),c2p_dest movel sp@(12),c2p_width @@ -393,11 +396,13 @@ dbra d7,c2p4_bcly moveml sp@+,d2-d7/a2-a6 +#endif rts /* ------------ Conversion of a light palette in 4 bits ------------ */ _SDL_Atari_C2pConvert4_pal: +#if !defined(__mcoldfire__) /* a0 is a 256-word light palette */ movel sp@(4),a0 @@ -423,7 +428,7 @@ dbra d3,c2p_pal_initbcl moveml sp@+,d2-d3 - +#endif rts /* ------------ Buffers ------------ */