diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/CpuSleep.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/CpuSleep.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuSleep.asm b/MdePkg/Library/BaseLib/Ia32/CpuSleep.asm index 66fb90e903..8a779f7017 100644 --- a/MdePkg/Library/BaseLib/Ia32/CpuSleep.asm +++ b/MdePkg/Library/BaseLib/Ia32/CpuSleep.asm @@ -21,7 +21,7 @@ ;------------------------------------------------------------------------------
.386
- .model flat
+ .model flat,C
.code
;------------------------------------------------------------------------------
@@ -31,9 +31,9 @@ ; VOID
; );
;------------------------------------------------------------------------------
-_CpuSleep PROC
+CpuSleep PROC
hlt
ret
-_CpuSleep ENDP
+CpuSleep ENDP
END
|