]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/FspSecCore/Ia32/ReadEsp.nasm
IntelFsp2Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFsp2Pkg / FspSecCore / Ia32 / ReadEsp.nasm
1 ;; @file
2 ; Provide read ESP function
3 ;
4 ; Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
5 ; SPDX-License-Identifier: BSD-2-Clause-Patent
6 ;;
7 ;------------------------------------------------------------------------------
8
9 SECTION .text
10
11 ;------------------------------------------------------------------------------
12 ; UINT32
13 ; EFIAPI
14 ; AsmReadEsp (
15 ; VOID
16 ; );
17 ;------------------------------------------------------------------------------
18 global ASM_PFX(AsmReadEsp)
19 ASM_PFX(AsmReadEsp):
20 mov eax, esp
21 ret
22