summaryrefslogtreecommitdiffstats
path: root/GNU_efi_HelloWorld/hello.c
blob: 26cbd426e6b4bcbfafbef1b26d9a7bc2fb7af8aa (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;
}