]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/DivU64x32.S
Minor grammatical work--mostly adding periods. Sending separately a list of files...
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / DivU64x32.S
index 170819858e784220f064e9aec8d9fa73b8e67fa4..5d3f4529457d65356f125af163d78b8e1597019c 100644 (file)
@@ -1,22 +1,17 @@
-//\r
-// Include common header file for this module.\r
-//\r
-#include "CommonHeader.h"\r
-\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006, Intel Corporation\r
-# All rights reserved. This program and the accompanying materials\r
+# Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
+# This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
+# http://opensource.org/licenses/bsd-license.php.\r
 #\r
 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 #\r
 # Module Name:\r
 #\r
-#   DivU64x32.asm\r
+#   DivU64x32.S\r
 #\r
 # Abstract:\r
 #\r
@@ -24,7 +19,7 @@
 #\r
 #------------------------------------------------------------------------------\r
 \r
-.globl ASM_PFX(InternalMathDivU64x32)\r
+ASM_GLOBAL ASM_PFX(InternalMathDivU64x32)\r
 \r
 #------------------------------------------------------------------------------\r
 # UINT64\r
@@ -39,8 +34,8 @@ ASM_PFX(InternalMathDivU64x32):
     movl    12(%esp), %ecx\r
     xorl    %edx, %edx\r
     divl    %ecx\r
-    push    %eax\r
+    push    %eax                    # save quotient on stack\r
     movl    8(%esp), %eax\r
     divl    %ecx\r
-    pop     %edx\r
+    pop     %edx                    # restore high-order dword of the quotient\r
     ret\r