view boot/bootx64.c @ 7:c778c27450cc

change executable file
author taiki
date Wed, 19 Dec 2012 01:10:08 +0900
parents a394e109feeb
children d390aa667e3c
line wrap: on
line source

#include <efi.h>
#include <efilib.h>


EFI_STATUS
efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *system_table)
{
    InitializeLib(image, system_table);
    Print(L"Hello, World\n\r");
    EFI_STATUS ret = EFI_SUCCESS;
    return ret;
}