mirror of
https://github.com/yude/firmament
synced 2024-12-22 20:20:10 +09:00
11 lines
219 B
C
11 lines
219 B
C
#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;
|
|
}
|