]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.s
4a325d1ec71dcac5e0af37aca6c3b26e079be856
[mirror_edk2.git] / IntelFspPkg / Library / BaseFspDebugLibSerialPort / Ia32 / FspDebug.s
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 #------------------------------------------------------------------------------
13 # UINT32 *
14 # EFIAPI
15 # GetStackFramePointer (
16 # VOID
17 # )
18 #------------------------------------------------------------------------------
19 ASM_GLOBAL ASM_PFX(GetStackFramePointer)
20 ASM_PFX(GetStackFramePointer):
21 mov %ebp, %eax
22 ret
23
24