2016-06-08 10:58:47 +02:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:04 +02:00
|
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
2016-06-08 10:58:47 +02:00
|
|
|
;
|
|
|
|
; Abstract:
|
|
|
|
;
|
|
|
|
; FSP Debug functions
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
SECTION .text
|
|
|
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; UINT32 *
|
|
|
|
; EFIAPI
|
|
|
|
; GetStackFramePointer (
|
|
|
|
; VOID
|
|
|
|
; );
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
global ASM_PFX(GetStackFramePointer)
|
|
|
|
ASM_PFX(GetStackFramePointer):
|
|
|
|
mov eax, ebp
|
|
|
|
ret
|
|
|
|
|