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