0
0
mirror of https://github.com/yude/firmament synced 2024-12-23 04:30:11 +09:00
firmament/LoaderPkg/Main.c

11 lines
219 B
C
Raw Normal View History

2021-05-04 10:46:03 +09:00
#include <Uefi.h>
#include <Library/UefiLib.h>
EFI_STATUS EFIAPI UefiMain(
EFI_HANDLE image_handle,
EFI_SYSTEM_TABLE *system_table) {
Print(L"Welcome to Firmament.\n");
while (1);
return EFI_SUCCESS;
}