11 lines
222 B
C
11 lines
222 B
C
#include <efi.h>
|
|
#include <efilib.h>
|
|
|
|
EFI_STATUS
|
|
EFIAPI
|
|
efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
|
|
InitializeLib(ImageHandle, SystemTable);
|
|
Print(L"Hello, world!\n");
|
|
return EFI_SUCCESS;
|
|
}
|