diff options
author | Daniel Borca <[email protected]> | 2004-04-13 07:08:34 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-04-13 07:08:34 +0000 |
commit | fb7766853d7fe77b1416afb32f32fb6dc2c442d1 (patch) | |
tree | f9d28ed37fc05dc2287370d72e6c17e194a77837 /src/mesa/x86 | |
parent | 4ba589bbf076f49bd899c7bca90fb186434f23da (diff) |
updated Glide driver documentation
fixed SAL/SAR in assyntax.h (NASM)
fixed a bug wrt NULL pointer assignment in t_vtx_api.c
cosmetics to t_vtx_x86.c & t_vtx_x86_gcc.S
enabled STDCALL with codegen (MinGW)
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/assyntax.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index c048790c431..62d079f2533 100644 --- a/src/mesa/x86/assyntax.h +++ b/src/mesa/x86/assyntax.h @@ -1300,11 +1300,11 @@ SECTION _DATA public align=16 class=DATA use32 flat #define REPZ REPE #define RET ret #define SAHF sahf -#define SAL_L(a, b) sal L_(b), L_(a) -#define SAL_W(a, b) sal W_(b), W_(a) +#define SAL_L(a, b) sal L_(b), B_(a) +#define SAL_W(a, b) sal W_(b), B_(a) #define SAL_B(a, b) sal B_(b), B_(a) -#define SAR_L(a, b) sar L_(b), L_(a) -#define SAR_W(a, b) sar W_(b), W_(a) +#define SAR_L(a, b) sar L_(b), B_(a) +#define SAR_W(a, b) sar W_(b), B_(a) #define SAR_B(a, b) sar B_(b), B_(a) #define SBB_L(a, b) sbb L_(b), L_(a) #define SBB_W(a, b) sbb W_(b), W_(a) |