]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibMmx/X64/SetMem64.S
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / X64 / SetMem64.S
index 618412ac1872b32058d18f68919b49ab2eb60b93..04da685215182cad74926ebd863d2e7afb27d0e2 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 UINT64 Value\r
 #    )\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
-.globl ASM_PFX(InternalMemSetMem64)\r
+ASM_GLOBAL ASM_PFX(InternalMemSetMem64)\r
 ASM_PFX(InternalMemSetMem64):\r
-    movq    mm0, r8                     #Value\r
-    mov     rax, rcx                    #rax <- Buffer\r
-    xchg    rcx, rdx                    #rcx <- Count\r
+    movd      %r8, %mm0                 #Value\r
+    movw      %rcx, %rax                #rax <- Buffer\r
+    xchg      %rdx, %rcx                #rcx <- Count\r
 L0:\r
-    movntq  [rdx], mm0\r
-    add     rdx, 8\r
+    movntq  %mm0, (%rdx) \r
+    addq    $8, %rdx\r
     loop    L0\r
     mfence\r
     ret\r