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