]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Application/ShellExecTestApp/SA.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ShellPkg / Application / ShellExecTestApp / SA.c
CommitLineData
94b17fa1 1/** @file\r
2 This is a simple shell application\r
3\r
3a888f2a 4 Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>\r
56ba3746 5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
94b17fa1 6\r
7**/\r
8\r
9#include <Uefi.h>\r
10#include <Library/UefiApplicationEntryPoint.h>\r
11#include <Library/UefiLib.h>\r
12\r
13/**\r
14 as the real entry point for the application.\r
15\r
1e6e84c7 16 @param[in] ImageHandle The firmware allocated handle for the EFI image.\r
94b17fa1 17 @param[in] SystemTable A pointer to the EFI System Table.\r
1e6e84c7 18\r
94b17fa1 19 @retval EFI_SUCCESS The entry point is executed successfully.\r
20 @retval other Some error occurs when executing this entry point.\r
21\r
22**/\r
23EFI_STATUS\r
24EFIAPI\r
25UefiMain (\r
26 IN EFI_HANDLE ImageHandle,\r
27 IN EFI_SYSTEM_TABLE *SystemTable\r
28 )\r
29{\r
47d20b54 30 Print (L"ShellExecute - Pass");\r
94b17fa1 31 return EFI_SUCCESS;\r
e9880e25 32}\r