summaryrefslogtreecommitdiffstats
path: root/GNU_efi_HelloWorld/hello.c
blob: 52c05b3d9c1ff8d48346ddad9b3ccb39d9520813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}