source: mainline/boot/arch/ia64/loader/gefi/apps/t4.c@ abe6163

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since abe6163 was 7208b6c, checked in by Jakub Vana <jakub.vana@…>, 18 years ago

Basic IA64 boot and kernel suport for real machines

  • Property mode set to 100644
File size: 388 bytes
Line 
1#include <efi.h>
2#include <efilib.h>
3
4EFI_STATUS
5efi_main (EFI_HANDLE *image, EFI_SYSTEM_TABLE *systab)
6{
7 UINTN index;
8
9 systab->ConOut->OutputString(systab->ConOut, L"Hello application started\r\n");
10 systab->ConOut->OutputString(systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
11 systab->BootServices->WaitForEvent(1, &systab->ConIn->WaitForKey, &index);
12 return EFI_SUCCESS;
13}
Note: See TracBrowser for help on using the repository browser.