]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm
IntelFspPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFspPkg / Library / BaseFspDebugLibSerialPort / Ia32 / FspDebug.asm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2014, 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 .386
13 .model flat,C
14 .code
15
16 ;------------------------------------------------------------------------------
17 ; UINT32 *
18 ; EFIAPI
19 ; GetStackFramePointer (
20 ; VOID
21 ; );
22 ;------------------------------------------------------------------------------
23 GetStackFramePointer PROC PUBLIC
24 mov eax, ebp
25 ret
26 GetStackFramePointer ENDP
27
28 END