mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
41 lines
941 B
NASM
41 lines
941 B
NASM
|
;------------------------------------------------------------------------------
|
||
|
;
|
||
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
;
|
||
|
; 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
|
||
|
|