2022-04-22 11:07:11 +02:00

30 lines
443 B
C

/** @file
Copyright (c) 2020, PMheart. All rights reserved.
SPDX-License-Identifier: BSD-3-Clause
**/
#include <Library/UefiBootServicesTableLib.h>
#include <Library/DebugLib.h>
STATIC
EFI_STATUS
EFIAPI
UefiMain (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
DEBUG ((DEBUG_ERROR, "Hello world\n"));
return EFI_SUCCESS;
}
int
ENTRY_POINT (
void
)
{
UefiMain (gImageHandle, gST);
return 0;
}