Home | History | Annotate | Line # | Download | only in apps
t2.c revision 1.1
      1 /*	$NetBSD: t2.c,v 1.1 2014/04/01 16:16:06 jakllsch Exp $	*/
      2 
      3 #include <efi.h>
      4 #include <efilib.h>
      5 
      6 EFI_STATUS
      7 efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
      8 {
      9 	SIMPLE_TEXT_OUTPUT_INTERFACE *conout;
     10 
     11 	conout = systab->ConOut;
     12 	uefi_call_wrapper(conout->OutputString, 2, conout, L"Hello World!\n\r");
     13 
     14 	return EFI_SUCCESS;
     15 }
     16