]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.nasm
IntelFsp2Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFsp2Pkg / Library / BaseFspDebugLibSerialPort / Ia32 / FspDebug.nasm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
4 ; SPDX-License-Identifier: BSD-2-Clause-Patent
5 ;
6 ; Abstract:
7 ;
8 ; FSP Debug functions
9 ;
10 ;------------------------------------------------------------------------------
11
12 SECTION .text
13
14 ;------------------------------------------------------------------------------
15 ; UINT32 *
16 ; EFIAPI
17 ; GetStackFramePointer (
18 ; VOID
19 ; );
20 ;------------------------------------------------------------------------------
21 global ASM_PFX(GetStackFramePointer)
22 ASM_PFX(GetStackFramePointer):
23 mov eax, ebp
24 ret
25