diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/ReadMm4.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/ReadMm4.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/ReadMm4.asm b/MdePkg/Library/BaseLib/Ia32/ReadMm4.asm index 4c2beb885b..8da079d82c 100644 --- a/MdePkg/Library/BaseLib/Ia32/ReadMm4.asm +++ b/MdePkg/Library/BaseLib/Ia32/ReadMm4.asm @@ -21,25 +21,25 @@ ;
;------------------------------------------------------------------------------
- .586P
- .model flat
- .xmm
+ .586
+ .model flat,C
+ .mmx
.code
;------------------------------------------------------------------------------
-; UINTN
+; UINT64
; EFIAPI
; AsmReadMm4 (
; VOID
; );
;------------------------------------------------------------------------------
-_AsmReadMm4 PROC
+AsmReadMm4 PROC
push eax
push eax
movq [esp], mm4
pop eax
pop edx
ret
-_AsmReadMm4 ENDP
+AsmReadMm4 ENDP
END
|