blob: 46ae5c7b54f561a76e975d0b4f08a6bc01d75f63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <efi.h>
#include <efilib.h>
EFI_STATUS
EFIAPI
efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
{
InitializeLib(ImageHandle, SystemTable);
Print(L"Hello, world!\n");
return EFI_SUCCESS;
}
|