]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem16.S
Update BASE_NAME to match the file names of the shell binaries so the INF files can...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibOptDxe / X64 / ScanMem16.S
index 140b0a40e5c25091d9dc4dad24fc1b99b46a8a36..ec8f235686e33bb42471080f271a921714433cf2 100644 (file)
@@ -3,8 +3,8 @@
 #\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006 - 2008, Intel Corporation\r
-# All rights reserved. This program and the accompanying materials\r
+# Copyright (c) 2006 - 2009, 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
 # CONST VOID *\r
 # EFIAPI\r
 # InternalMemScanMem16 (\r
-#   IN      CONST VOID                *Buffer,\r
+#   IN      CONST VOID          *Buffer,\r
 #   IN      UINTN                     Length,\r
 #   IN      UINT16                    Value\r
 #   );\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
 ASM_GLOBAL ASM_PFX(InternalMemScanMem16)\r
 ASM_PFX(InternalMemScanMem16):\r
-    push    rdi\r
-    mov     rdi, rcx\r
-    mov     rax, r8\r
-    mov     rcx, rdx\r
+    pushq  %rdi\r
+    movq   %rcx, %rdi\r
+    movq   %r8, %rax\r
+    movq   %rdx, %rcx\r
     repne   scasw\r
-    lea     rax, [rdi - 2]\r
-    cmovnz  rax, rcx\r
-    pop     rdi\r
+    leaq    -2(%rdi), %rax\r
+    cmovnz  %rcx, %rax\r
+    popq    %rdi\r
     ret\r
 \r