dc29a4ac48
* Added NASM, the Netwide Assembler. * Added Generator, an emulator for Sega Genesis / Mega Drive machines. Built with XVideo patch. Strangely it crashes with a GDK error when started in normal mode. However, with the "-a" switch (arcade mode) it works, and subsequently switching back to windowed mode (Ctrl-F) also works. svn path=/nixpkgs/trunk/; revision=1509
38 lines
903 B
Diff
38 lines
903 B
Diff
diff -rc SDL-orig/src/cpuinfo/SDL_cpuinfo.c SDL-1.2.7/src/cpuinfo/SDL_cpuinfo.c
|
|
*** SDL-orig/src/cpuinfo/SDL_cpuinfo.c 2004-02-10 16:31:35.000000000 +0100
|
|
--- SDL-1.2.7/src/cpuinfo/SDL_cpuinfo.c 2004-09-26 18:49:50.000000000 +0200
|
|
***************
|
|
*** 118,124 ****
|
|
" movl %%edi,%%ebx\n"
|
|
: "=m" (features)
|
|
:
|
|
! : "%eax", "%ebx", "%ecx", "%edx", "%edi"
|
|
);
|
|
#elif defined(_MSC_VER)
|
|
__asm {
|
|
--- 118,124 ----
|
|
" movl %%edi,%%ebx\n"
|
|
: "=m" (features)
|
|
:
|
|
! : "%eax", "%ecx", "%edx", "%edi"
|
|
);
|
|
#elif defined(_MSC_VER)
|
|
__asm {
|
|
***************
|
|
*** 153,159 ****
|
|
" movl %%edi,%%ebx\n"
|
|
: "=m" (features)
|
|
:
|
|
! : "%eax", "%ebx", "%ecx", "%edx", "%edi"
|
|
);
|
|
#elif defined(_MSC_VER)
|
|
__asm {
|
|
--- 153,159 ----
|
|
" movl %%edi,%%ebx\n"
|
|
: "=m" (features)
|
|
:
|
|
! : "%eax", "%ecx", "%edx", "%edi"
|
|
);
|
|
#elif defined(_MSC_VER)
|
|
__asm {
|