view boot/bootx64.c @ 10:6c0c504fddae

minor change
author taiki
date Sat, 19 Jan 2013 01:55:18 +0900
parents e6715e03b87a
children 09ced7d8f64a
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");

    while (1)
    {
        asm volatile ("cli" : : );
    }

    return EFI_SUCCESS;
}