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