]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/DivU64x32.S
remove unnecessary comments introduced by tools from MdePkg. The regular express...
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / DivU64x32.S
index 89d754614afd81759222eb273c7e51b843cd741d..b858278e6423d81464aeb844b268e70ee4df5f65 100644 (file)
 #
 #------------------------------------------------------------------------------
 
-    .386: 
-    .code: 
+.globl ASM_PFX(InternalMathDivU64x32)
 
-.global _InternalMathDivU64x32
-_InternalMathDivU64x32:
-    movl    8(%esp),%eax
-    movl    12(%esp),%ecx
-    xorl    %edx,%edx
+#------------------------------------------------------------------------------
+# UINT64
+# EFIAPI
+# InternalMathDivU64x32 (
+#   IN      UINT64                    Dividend,
+#   IN      UINT32                    Divisor
+#   );
+#------------------------------------------------------------------------------
+ASM_PFX(InternalMathDivU64x32):
+    movl    8(%esp), %eax
+    movl    12(%esp), %ecx
+    xorl    %edx, %edx
     divl    %ecx
-    pushl   %eax
-    movl    8(%esp),%eax
+    push    %eax
+    movl    8(%esp), %eax
     divl    %ecx
-    popl    %edx
+    pop     %edx
     ret