]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFspPkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm
IntelFspPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFspPkg / Library / BaseFspDebugLibSerialPort / Ia32 / FspDebug.asm
CommitLineData
c8ec22a2
JY
1;------------------------------------------------------------------------------\r
2;\r
3; Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>\r
16a16ea6 4; SPDX-License-Identifier: BSD-2-Clause-Patent\r
c8ec22a2
JY
5;\r
6; Abstract:\r
7;\r
8; FSP Debug functions\r
9;\r
10;------------------------------------------------------------------------------\r
11\r
12 .386\r
13 .model flat,C\r
14 .code\r
15\r
16;------------------------------------------------------------------------------\r
17; UINT32 *\r
18; EFIAPI\r
19; GetStackFramePointer (\r
20; VOID\r
21; );\r
22;------------------------------------------------------------------------------\r
23GetStackFramePointer PROC PUBLIC\r
24 mov eax, ebp\r
25 ret\r
26GetStackFramePointer ENDP\r
27\r
28 END\r