mirror of https://github.com/acidanthera/audk.git
20 lines
449 B
ArmAsm
20 lines
449 B
ArmAsm
//------------------------------------------------------------------------------
|
|
//
|
|
// CpuSleep for RISC-V
|
|
//
|
|
// Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
.data
|
|
.align 3
|
|
.section .text
|
|
|
|
.global ASM_PFX(_CpuSleep)
|
|
|
|
ASM_PFX(_CpuSleep):
|
|
wfi
|
|
ret
|
|
|
|
|