summaryrefslogtreecommitdiffstats
path: root/IntelFspPkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm
blob: 52a25f7715877a6b489fe717e59a22aeb34e9f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;------------------------------------------------------------------------------
;
; Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; Abstract:
;
;   FSP Debug functions
;
;------------------------------------------------------------------------------

    .386
    .model  flat,C
    .code

;------------------------------------------------------------------------------
; UINT32 *
; EFIAPI
; GetStackFramePointer (
;   VOID
;   );
;------------------------------------------------------------------------------
GetStackFramePointer  PROC  PUBLIC
    mov     eax, ebp
    ret
GetStackFramePointer  ENDP

    END