summaryrefslogtreecommitdiffstats
path: root/GNU_efi_HelloWorld/hello.c
blob: 06b2b0b9d49e54230a7fbc011ce621c4e8188109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <efi.h>
#include <efilib.h>

EFI_STATUS
EFIAPI
efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {

	EFI_LOADED_IMAGE *loaded_image = NULL;
	EFI_STATUS status;

	InitializeLib(ImageHandle, SystemTable);
	Print(L"Hello, world!\n");

	status = uefi_call_wrapper(SystemTable->BootServices->HandleProtocol,
					3,
					ImageHandle,
					&LoadedImageProtocol,
					(void **)&loaded_image);

	if (EFI_ERROR(status)) {
		Print(L"handleprotocol: %r\n", status);
	}

	Print(L"Image base: 0x%lx\n", loaded_image->ImageBase);

	DEBUG((D_ERROR, "AllocatePool: out of pool  %x\n", status));

	volatile int wait = 1;
	while(wait) {
		__asm__ __volatile__("pause");
	}

	return EFI_SUCCESS;
}