]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem.S
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibOptPei / X64 / SetMem.S
index f742498d429de41442f7eb354b6f923ca7c1b03d..5dead6c992489e5b33f6abbc6d3dd954851cecc4 100644 (file)
@@ -3,11 +3,11 @@
 #\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
+# 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
 #    IN UINT8  Value\r
 #    )\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
-.globl ASM_PFX(InternalMemSetMem)\r
+ASM_GLOBAL ASM_PFX(InternalMemSetMem)\r
 ASM_PFX(InternalMemSetMem):\r
-    push    rdi\r
-    mov     rax, r8    # rax = Value\r
-    mov     rdi, rcx   # rdi = Buffer\r
-    xchg    rcx, rdx   # rcx = Count, rdx = Buffer\r
+    pushq   %rdi\r
+    movq    %r8, %rax    # rax = Value\r
+    movq    %rcx, %rdi   # rdi = Buffer\r
+    xchgq   %rdx, %rcx   # rcx = Count, rdx = Buffer\r
     rep     stosb\r
-    mov     rax, rdx   # rax = Buffer\r
-    pop     rdi\r
+    movq    %rdx, %rax   # rax = Buffer\r
+    popq    %rdi\r
     ret\r
 \r