~galfy/helenos/bird-port-mainline

« back to all changes in this revision

Viewing changes to boot/arch/ia64/loader/gefi/apps/t2.c

  • Committer: Martin Decky
  • Date: 2009-08-04 11:19:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20090804111919-evyclddlr3v5lhmp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <efi.h>
 
2
#include <efilib.h>
 
3
 
 
4
EFI_STATUS
 
5
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
 
6
{
 
7
        SIMPLE_TEXT_OUTPUT_INTERFACE *conout;
 
8
 
 
9
        conout = systab->ConOut;
 
10
        conout->OutputString(conout, L"Hello World!\n\r");
 
11
 
 
12
        return EFI_SUCCESS;
 
13
}