summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/Monitor.asm
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/Monitor.asm')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/Monitor.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/Monitor.asm b/MdePkg/Library/BaseLib/Ia32/Monitor.asm
index 5d92d26673..174bd7665f 100644
--- a/MdePkg/Library/BaseLib/Ia32/Monitor.asm
+++ b/MdePkg/Library/BaseLib/Ia32/Monitor.asm
@@ -22,11 +22,11 @@
;------------------------------------------------------------------------------
.686
- .model flat
+ .model flat,C
.code
;------------------------------------------------------------------------------
-; UINT64
+; UINTN
; EFIAPI
; AsmMonitor (
; IN UINTN Eax,
@@ -34,12 +34,12 @@
; IN UINTN Edx
; );
;------------------------------------------------------------------------------
-_AsmMonitor PROC
+AsmMonitor PROC
mov eax, [esp + 4]
mov ecx, [esp + 8]
mov edx, [esp + 12]
- DB 0fh, 1, 0c8h
+ DB 0fh, 1, 0c8h ; monitor
ret
-_AsmMonitor ENDP
+AsmMonitor ENDP
END