diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm b/MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm index de87ad75e9..367412403e 100644 --- a/MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm +++ b/MdePkg/Library/BaseLib/Ia32/CpuFlushTlb.asm @@ -21,7 +21,7 @@ ;------------------------------------------------------------------------------
.386p
- .model flat
+ .model flat,C
.code
;------------------------------------------------------------------------------
@@ -31,10 +31,10 @@ ; VOID
; );
;------------------------------------------------------------------------------
-_CpuFlushTlb PROC
+CpuFlushTlb PROC
mov eax, cr3
mov cr3, eax
ret
-_CpuFlushTlb ENDP
+CpuFlushTlb ENDP
END
|