mirror of https://github.com/acidanthera/audk.git
29 lines
706 B
NASM
29 lines
706 B
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
; Abstract:
|
|
;
|
|
; FSP Debug functions
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
.386
|
|
.model flat,C
|
|
.code
|
|
|
|
;------------------------------------------------------------------------------
|
|
; UINT32 *
|
|
; EFIAPI
|
|
; GetStackFramePointer (
|
|
; VOID
|
|
; );
|
|
;------------------------------------------------------------------------------
|
|
GetStackFramePointer PROC PUBLIC
|
|
mov eax, ebp
|
|
ret
|
|
GetStackFramePointer ENDP
|
|
|
|
END
|