summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 062384001c69c5f4b9bbc31d8d13401c19f7a1bc (plain)
1
2
3
4
5
6
7
8
#include <efi.h>

int
efi_main(void *hand, EFI_SYSTEM_TABLE *systab) {
    systab->con_out->output_string(systab->con_out, (int16_t *)L"Hello, World!");
    for(;;);
    return 0;
}