2008-11-03 10:25:10 +01:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
2010-04-23 18:20:52 +02:00
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
# This program and the accompanying materials
|
2008-11-03 10:25:10 +01:00
|
|
|
# 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:
|
|
|
|
#
|
|
|
|
# SetMem16.Asm
|
|
|
|
#
|
|
|
|
# Abstract:
|
|
|
|
#
|
|
|
|
# SetMem16 function
|
|
|
|
#
|
|
|
|
# Notes:
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
2009-05-20 12:22:09 +02:00
|
|
|
ASM_GLOBAL ASM_PFX(InternalMemSetMem16)
|
2008-11-03 10:25:10 +01:00
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# VOID *
|
|
|
|
# InternalMemSetMem16 (
|
|
|
|
# IN VOID *Buffer,
|
|
|
|
# IN UINTN Count,
|
|
|
|
# IN UINT16 Value
|
|
|
|
# )
|
|
|
|
#------------------------------------------------------------------------------
|
2009-05-15 05:21:08 +02:00
|
|
|
ASM_PFX(InternalMemSetMem16):
|
2008-11-03 10:25:10 +01:00
|
|
|
push %edi
|
|
|
|
movl 16(%esp), %eax
|
|
|
|
movl 8(%esp), %edi
|
|
|
|
movl 12(%esp), %ecx
|
|
|
|
rep
|
|
|
|
stosw
|
|
|
|
movl 8(%esp), %eax
|
|
|
|
pop %edi
|
|
|
|
ret
|