https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
61 lines
1.2 KiB
NASM
61 lines
1.2 KiB
NASM
//------------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
|
//
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
INCLUDE AsmMacroExport.inc
|
|
|
|
;
|
|
;UINT32
|
|
;EFIAPI
|
|
;__aeabi_uwrite4 (
|
|
; IN UINT32 Data,
|
|
; IN VOID *Pointer
|
|
; );
|
|
;
|
|
;
|
|
RVCT_ASM_EXPORT __aeabi_uwrite4
|
|
mov r2, r0, lsr #8
|
|
strb r0, [r1]
|
|
strb r2, [r1, #1]
|
|
mov r2, r0, lsr #16
|
|
strb r2, [r1, #2]
|
|
mov r2, r0, lsr #24
|
|
strb r2, [r1, #3]
|
|
bx lr
|
|
|
|
;
|
|
;UINT64
|
|
;EFIAPI
|
|
;__aeabi_uwrite8 (
|
|
; IN UINT64 Data, //r0-r1
|
|
; IN VOID *Pointer //r2
|
|
; );
|
|
;
|
|
;
|
|
RVCT_ASM_EXPORT __aeabi_uwrite8
|
|
mov r3, r0, lsr #8
|
|
strb r0, [r2]
|
|
strb r3, [r2, #1]
|
|
mov r3, r0, lsr #16
|
|
strb r3, [r2, #2]
|
|
mov r3, r0, lsr #24
|
|
strb r3, [r2, #3]
|
|
|
|
mov r3, r1, lsr #8
|
|
strb r1, [r2, #4]
|
|
strb r3, [r2, #5]
|
|
mov r3, r1, lsr #16
|
|
strb r3, [r2, #6]
|
|
mov r3, r1, lsr #24
|
|
strb r3, [r2, #7]
|
|
bx lr
|
|
|
|
END
|
|
|