]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem8.S
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / X64 / ScanMem8.S
index c5b5a55cbf3868b567eb7f6241f17a3019383649..384095d87914fdf16558c0ddb63a5c07d1a76bfc 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
 #   IN      UINT8                     Value\r
 #   );\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
-.globl ASM_PFX(InternalMemScanMem8)\r
+ASM_GLOBAL ASM_PFX(InternalMemScanMem8)\r
 ASM_PFX(InternalMemScanMem8):\r
-    push    rdi\r
-    mov     rdi, rcx\r
-    mov     rcx, rdx\r
-    mov     rax, r8\r
-    repne   scasb\r
-    lea     rax, [rdi - 1]\r
-    cmovnz  rax, rcx                    # set rax to 0 if not found\r
-    pop     rdi\r
+    pushq    %rdi\r
+    movq     %rcx, %rdi \r
+    movq     %rdx, %rcx  \r
+    movq     %r8,   %rax \r
+    repne    scasb\r
+    leaq     -1(%rdi), %rax\r
+    cmovnz   %rcx, %rax                     # set rax to 0 if not found\r
+    popq     %rdi\r
     ret\r
 \r