]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/ZeroMem.S
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseMemoryLib / X64 / ZeroMem.S
index b2b08502c42be0d9f941409ac64501e7beefc4aa..8fd0d30a731313ea822ad25f745236fa3f4e7da5 100644 (file)
@@ -3,8 +3,8 @@
 #\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006, 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 UINTN  Count\r
 #    );\r
 #------------------------------------------------------------------------------\r
-.intel_syntax\r
 .globl ASM_PFX(InternalMemZeroMem)\r
 ASM_PFX(InternalMemZeroMem):\r
-    push    rdi\r
-    push    rcx\r
-    xor     rax, rax\r
-    mov     rdi, rcx\r
-    mov     rcx, rdx\r
-    shr     rcx, 3\r
-    and     rdx, 7\r
+    pushq   %rdi\r
+    pushq   %rcx\r
+    xorq    %rax, %rax\r
+    movq    %rcx, %rdi\r
+    movq    %rdx, %rcx\r
+    shrq    $3, %rcx\r
+    andq    $7, %rdx\r
     rep     stosq\r
-    mov     ecx, edx\r
+    movl    %edx, %ecx\r
     rep     stosb\r
-    pop     rax\r
-    pop     rdi\r
+    popq    %rax\r
+    popq    %rdi\r
     ret\r
 \r