comparison src/video/SDL_yuv_mmx.c @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c71e05b4dc2e
children d910939febfa
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 22
23 #include "SDL_stdinc.h" 23 #include "SDL_stdinc.h"
24 24
25 #if defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT) 25 #if i386 && __GNUC__ && SDL_ASSEMBLY_BLITTERS
26 26
27 #define ASM_ARRAY(x) x[] __asm__("_" #x) __attribute__((used)) 27 #define ASM_ARRAY(x) x[] __asm__("_" #x) __attribute__((used))
28 28
29 static unsigned int ASM_ARRAY(MMX_0080w) = {0x00800080, 0x00800080}; 29 static unsigned int ASM_ARRAY(MMX_0080w) = {0x00800080, 0x00800080};
30 static unsigned int ASM_ARRAY(MMX_00FFw) = {0x00ff00ff, 0x00ff00ff}; 30 static unsigned int ASM_ARRAY(MMX_00FFw) = {0x00ff00ff, 0x00ff00ff};