2014-07-29 04:21:52 +02:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:08 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-07-29 04:21:52 +02:00
|
|
|
#
|
|
|
|
# Abstract:
|
|
|
|
#
|
|
|
|
# FSP Debug functions
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# UINT32 *
|
|
|
|
# EFIAPI
|
|
|
|
# GetStackFramePointer (
|
|
|
|
# VOID
|
|
|
|
# )
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
ASM_GLOBAL ASM_PFX(GetStackFramePointer)
|
|
|
|
ASM_PFX(GetStackFramePointer):
|
|
|
|
mov %ebp, %eax
|
|
|
|
ret
|
|
|
|
|
|
|
|
|