]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/ModU64x32.S
1. Updated function headers in all assembly files.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / ModU64x32.S
index a8e9574b2dabb921d7917004a068bc7579648a33..f2d6cfddf7412860e5c218fec1b2fa0f3d7bf4bf 100644 (file)
 #\r
 #------------------------------------------------------------------------------\r
 \r
-\r
-\r
-     \r
-\r
 .global _InternalMathModU64x32\r
-_InternalMathModU64x32: \r
-    movl    8(%esp),%eax\r
-    movl    12(%esp),%ecx\r
-    xorl    %edx,%edx\r
+\r
+#------------------------------------------------------------------------------\r
+# UINT32\r
+# EFIAPI\r
+# InternalMathModU64x32 (\r
+#   IN      UINT64                    Dividend,\r
+#   IN      UINT32                    Divisor\r
+#   );\r
+#------------------------------------------------------------------------------\r
+_InternalMathModU64x32:\r
+    movl    8(%esp), %eax\r
+    movl    12(%esp), %ecx\r
+    xorl    %edx, %edx\r
     divl    %ecx\r
-    movl    4(%esp),%eax\r
+    movl    4(%esp), %eax\r
     divl    %ecx\r
-    movl    %edx,%eax\r
+    movl    %edx, %eax\r
     ret\r
-\r
-\r
-\r