]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibSse2/Ia32/CompareMem.asm
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / Ia32 / CompareMem.asm
index 4e35d1c85823085115d2c8fc8fbb5a8b6889b1dd..5a0792d592d41b402525df46e4a9991f359fda19 100644 (file)
@@ -1,10 +1,10 @@
 ;------------------------------------------------------------------------------\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
 ; Notes:\r
 ;\r
-;   The following BaseMemoryLib instances share the same version of this file:\r
+;   The following BaseMemoryLib instances contain the same copy of this file:\r
 ;\r
 ;       BaseMemoryLibRepStr\r
 ;       BaseMemoryLibMmx\r
 ;       BaseMemoryLibSse2\r
+;       BaseMemoryLibOptDxe\r
+;       BaseMemoryLibOptPei\r
 ;\r
 ;------------------------------------------------------------------------------\r
 \r
     .model  flat,C\r
     .code\r
 \r
+;------------------------------------------------------------------------------\r
+; INTN\r
+; EFIAPI\r
+; InternalMemCompareMem (\r
+;   IN      CONST VOID                *DestinationBuffer,\r
+;   IN      CONST VOID                *SourceBuffer,\r
+;   IN      UINTN                     Length\r
+;   );\r
+;------------------------------------------------------------------------------\r
 InternalMemCompareMem   PROC    USES    esi edi\r
     mov     esi, [esp + 12]\r
     mov     edi, [esp + 16]\r
@@ -39,7 +50,6 @@ InternalMemCompareMem   PROC    USES    esi edi
     movzx   eax, byte ptr [esi - 1]\r
     movzx   edx, byte ptr [edi - 1]\r
     sub     eax, edx\r
-    sub     eax, edx\r
     ret\r
 InternalMemCompareMem   ENDP\r
 \r