2013-01-31 01:25:25 +04:00
|
|
|
#include <efi.h>
|
|
|
|
#include <efilib.h>
|
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
|
|
|
|
{
|
|
|
|
SIMPLE_TEXT_OUTPUT_INTERFACE *conout;
|
|
|
|
|
2016-03-04 00:55:26 +03:00
|
|
|
InitializeLib(image, systab);
|
2013-01-31 01:25:25 +04:00
|
|
|
conout = systab->ConOut;
|
2024-05-18 17:23:12 +03:00
|
|
|
uefi_call_wrapper(conout->OutputString, 2, conout, L"Hello World!\r\n");
|
2013-01-31 01:25:25 +04:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|