2019-09-03 11:58:42 +02:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
|
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
;
|
|
|
|
; Module Name:
|
|
|
|
;
|
|
|
|
; SetMem.Asm
|
|
|
|
;
|
|
|
|
; Abstract:
|
|
|
|
;
|
|
|
|
; SetMem function
|
|
|
|
;
|
|
|
|
; Notes:
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
DEFAULT REL
|
|
|
|
SECTION .text
|
|
|
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; VOID *
|
|
|
|
; EFIAPI
|
2020-05-01 18:26:28 +02:00
|
|
|
; InternalMemSetMem(
|
2019-09-03 11:58:42 +02:00
|
|
|
; IN VOID *Buffer,
|
|
|
|
; IN UINTN Count,
|
|
|
|
; IN UINT8 Value
|
|
|
|
; )
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
global ASM_PFX(InternalMemSetMem)
|
|
|
|
ASM_PFX(InternalMemSetMem):
|
|
|
|
push rdi
|
|
|
|
mov rax, r8 ; rax = Value
|
|
|
|
mov rdi, rcx ; rdi = Buffer
|
|
|
|
xchg rcx, rdx ; rcx = Count, rdx = Buffer
|
|
|
|
rep stosb
|
|
|
|
mov rax, rdx ; rax = Buffer
|
|
|
|
pop rdi
|
|
|
|
ret
|
|
|
|
|