main.c 222 B

1234567891011
  1. #include <efi.h>
  2. #include <efilib.h>
  3. EFI_STATUS
  4. EFIAPI
  5. efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
  6. InitializeLib(ImageHandle, SystemTable);
  7. Print(L"Hello, world!\n");
  8. return EFI_SUCCESS;
  9. }