summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/ReadTsc.asm')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/ReadTsc.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm b/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm
index ea3c164ecd..fff38292ef 100644
--- a/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm
+++ b/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm
@@ -21,8 +21,8 @@
;
;------------------------------------------------------------------------------
- .586P
- .model flat
+ .586p
+ .model flat,C
.code
;------------------------------------------------------------------------------
@@ -32,9 +32,9 @@
; VOID
; );
;------------------------------------------------------------------------------
-_AsmReadTsc PROC
+AsmReadTsc PROC
rdtsc
ret
-_AsmReadTsc ENDP
+AsmReadTsc ENDP
END