diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/EnablePaging64.S')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/EnablePaging64.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/EnablePaging64.S b/MdePkg/Library/BaseLib/Ia32/EnablePaging64.S index b365ea762a..3758479980 100644 --- a/MdePkg/Library/BaseLib/Ia32/EnablePaging64.S +++ b/MdePkg/Library/BaseLib/Ia32/EnablePaging64.S @@ -15,7 +15,7 @@ #
# Abstract:
#
-# AsmEnablePaging64 function
+# InternalX86EnablePaging64 function
#
# Notes:
#
@@ -28,7 +28,7 @@ #------------------------------------------------------------------------------
# VOID
# EFIAPI
-# AsmEnablePaging64 (
+# InternalX86EnablePaging64 (
# IN UINT16 CodeSelector,
# IN UINT64 EntryPoint,
# IN UINT64 Context1, OPTIONAL
@@ -36,10 +36,10 @@ # IN UINT64 NewStack
# );
#------------------------------------------------------------------------------
-.global _AsmEnablePaging64
-_AsmEnablePaging64:
+.global _InternalX86EnablePaging64
+_InternalX86EnablePaging64:
cli
- movl $$LongStart, (%esp)
+ movl $LongStart, (%esp)
movl %cr4, %eax
orb $0x20, %al
movl %eax, %cr4 # enable PAE
|