diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/Mwait.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/Mwait.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/Mwait.asm b/MdePkg/Library/BaseLib/Ia32/Mwait.asm index 91d505b4e2..3e5f48c280 100644 --- a/MdePkg/Library/BaseLib/Ia32/Mwait.asm +++ b/MdePkg/Library/BaseLib/Ia32/Mwait.asm @@ -22,22 +22,22 @@ ;------------------------------------------------------------------------------
.686
- .model flat
+ .model flat,C
.code
;------------------------------------------------------------------------------
-; UINT64
+; UINTN
; EFIAPI
; AsmMwait (
; IN UINTN Eax,
; IN UINTN Ecx
; );
;------------------------------------------------------------------------------
-_AsmMwait PROC
+AsmMwait PROC
mov eax, [esp + 4]
mov ecx, [esp + 8]
- DB 0fh, 1, 0c9h
+ DB 0fh, 1, 0c9h ; mwait
ret
-_AsmMwait ENDP
+AsmMwait ENDP
END
|