summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/ReadMm1.asm')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/ReadMm1.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm b/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm
index ea748cbd7e..9f92a44aa0 100644
--- a/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm
+++ b/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm
@@ -21,25 +21,25 @@
;
;------------------------------------------------------------------------------
- .586P
- .model flat
- .xmm
+ .586
+ .model flat,C
+ .mmx
.code
;------------------------------------------------------------------------------
-; UINTN
+; UINT64
; EFIAPI
; AsmReadMm1 (
; VOID
; );
;------------------------------------------------------------------------------
-_AsmReadMm1 PROC
+AsmReadMm1 PROC
push eax
push eax
movq [esp], mm1
pop eax
pop edx
ret
-_AsmReadMm1 ENDP
+AsmReadMm1 ENDP
END