mirror of https://github.com/acidanthera/audk.git
22 lines
768 B
ArmAsm
22 lines
768 B
ArmAsm
//------------------------------------------------------------------------------
|
|
// Arm/StackCookieInterrupt.S
|
|
//
|
|
// Copyright (c) Microsoft Corporation.
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//------------------------------------------------------------------------------
|
|
|
|
.text
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Calls an interrupt using the vector specified by PcdStackCookieExceptionVector
|
|
//
|
|
// VOID
|
|
// TriggerStackCookieInterrupt (
|
|
// VOID
|
|
// );
|
|
//------------------------------------------------------------------------------
|
|
.global ASM_PFX(TriggerStackCookieInterrupt)
|
|
ASM_PFX(TriggerStackCookieInterrupt):
|
|
swi FixedPcdGet8 (PcdStackCookieExceptionVector)
|
|
bx lr
|