diff options
author | Brian Paul <[email protected]> | 2003-02-20 15:43:52 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-02-20 15:43:52 +0000 |
commit | 60f84fcc91c5fb86843c528416399303da113a2f (patch) | |
tree | 698d04b625c6efac205d76ae7d68b074102090f2 /src/mesa/drivers/dos/virtual.S | |
parent | 449e47f06a46c42fb9895d13f37b599600225e56 (diff) |
latest DOS updates (Daniel Borca)
Diffstat (limited to 'src/mesa/drivers/dos/virtual.S')
-rw-r--r-- | src/mesa/drivers/dos/virtual.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dos/virtual.S b/src/mesa/drivers/dos/virtual.S index c5a72975feb..0605514b14a 100644 --- a/src/mesa/drivers/dos/virtual.S +++ b/src/mesa/drivers/dos/virtual.S @@ -108,7 +108,7 @@ _v_clear_common: .global _v_clear8_mmx
_v_clear8_mmx:
#ifdef USE_MMX_ASM
- movq 4(%esp), %mm0
+ movd 4(%esp), %mm0
punpcklbw %mm0, %mm0
punpcklwd %mm0, %mm0
jmp _v_clear_common_mmx
@@ -125,7 +125,7 @@ _v_clear8_mmx: .global _v_clear16_mmx
_v_clear16_mmx:
#ifdef USE_MMX_ASM
- movq 4(%esp), %mm0
+ movd 4(%esp), %mm0
punpcklwd %mm0, %mm0
jmp _v_clear_common_mmx
#endif
@@ -141,7 +141,7 @@ _v_clear16_mmx: .global _v_clear32_mmx
_v_clear32_mmx:
#ifdef USE_MMX_ASM
- movq 4(%esp), %mm0
+ movd 4(%esp), %mm0
.balign 4
_v_clear_common_mmx:
punpckldq %mm0, %mm0
|