hello.c 184 B

123456789101112
  1. #include <efi.h>
  2. EFI_STATUS efi_main(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *ST)
  3. {
  4. ST->ConOut->OutputString(ST->ConOut, L"Hello World\r\n");
  5. for(;;){}
  6. return EFI_SUCCESS;
  7. }