mirror of https://github.com/acidanthera/audk.git
MdePkg BaseMemoryLibMmx: Convert Ia32/SetMem64.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/SetMem64.asm to Ia32/SetMem64.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
761ff57116
commit
9e3a12a162
|
@ -60,6 +60,7 @@
|
||||||
Ia32/ScanMem8.S
|
Ia32/ScanMem8.S
|
||||||
Ia32/CompareMem.nasm
|
Ia32/CompareMem.nasm
|
||||||
Ia32/CompareMem.S
|
Ia32/CompareMem.S
|
||||||
|
Ia32/SetMem64.nasm
|
||||||
Ia32/SetMem64.S
|
Ia32/SetMem64.S
|
||||||
Ia32/SetMem32.S
|
Ia32/SetMem32.S
|
||||||
Ia32/SetMem16.S
|
Ia32/SetMem16.S
|
||||||
|
@ -76,6 +77,7 @@
|
||||||
Ia32/ScanMem8.asm
|
Ia32/ScanMem8.asm
|
||||||
Ia32/CompareMem.nasm
|
Ia32/CompareMem.nasm
|
||||||
Ia32/CompareMem.asm
|
Ia32/CompareMem.asm
|
||||||
|
Ia32/SetMem64.nasm
|
||||||
Ia32/SetMem64.asm
|
Ia32/SetMem64.asm
|
||||||
Ia32/SetMem32.asm
|
Ia32/SetMem32.asm
|
||||||
Ia32/SetMem16.asm
|
Ia32/SetMem16.asm
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
;
|
||||||
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||||||
|
; This program and the accompanying materials
|
||||||
|
; are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
; which accompanies this distribution. The full text of the license may be found at
|
||||||
|
; http://opensource.org/licenses/bsd-license.php.
|
||||||
|
;
|
||||||
|
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
|
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
;
|
||||||
|
; Module Name:
|
||||||
|
;
|
||||||
|
; SetMem64.nasm
|
||||||
|
;
|
||||||
|
; Abstract:
|
||||||
|
;
|
||||||
|
; SetMem64 function
|
||||||
|
;
|
||||||
|
; Notes:
|
||||||
|
;
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SECTION .text
|
||||||
|
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
; VOID *
|
||||||
|
; EFIAPI
|
||||||
|
; InternalMemSetMem64 (
|
||||||
|
; IN VOID *Buffer,
|
||||||
|
; IN UINTN Count,
|
||||||
|
; IN UINT64 Value
|
||||||
|
; )
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
global ASM_PFX(InternalMemSetMem64)
|
||||||
|
ASM_PFX(InternalMemSetMem64):
|
||||||
|
mov eax, [esp + 4]
|
||||||
|
mov ecx, [esp + 8]
|
||||||
|
movq mm0, [esp + 12]
|
||||||
|
mov edx, eax
|
||||||
|
.0:
|
||||||
|
movq [edx], mm0
|
||||||
|
add edx, 8
|
||||||
|
loop .0
|
||||||
|
ret
|
||||||
|
|
Loading…
Reference in New Issue