]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/SetMem16.S
As ECP package is EDKI style, the AutoGen.h will not include anything. So if we use...
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseMemoryLib / X64 / SetMem16.S
CommitLineData
bd2d157b 1#
2# ConvertAsm.py: Automatically generated from SetMem16.asm
3#
4#------------------------------------------------------------------------------
5#
6# Copyright (c) 2006, Intel Corporation
7# All rights reserved. This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution. The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15# Module Name:
16#
17# SetMem16.S
18#
19# Abstract:
20#
21# SetMem16 function
22#
23# Notes:
24#
25#------------------------------------------------------------------------------
26
b27af9d2 27#include <EdkIIGlueBase.h>
bd2d157b 28#------------------------------------------------------------------------------
29# VOID *
30# EFIAPI
31# InternalMemSetMem16 (
32# IN VOID *Buffer,
33# IN UINTN Count,
34# IN UINT16 Value
35# )
36#------------------------------------------------------------------------------
37.intel_syntax
34e4a9a6 38.globl ASM_PFX(InternalMemSetMem16)
39ASM_PFX(InternalMemSetMem16):
bd2d157b 40 push rdi
41 mov rdi, rcx
42 mov rax, r8
43 xchg rcx, rdx
44 rep stosw
45 mov rax, rdx
46 pop rdi
47 ret
48