diff options
| author | 2026-08-18 12:15:05 +0200 | |
|---|---|---|
| committer | 2026-08-18 12:15:05 +0200 | |
| commit | 132d3236bb884433bf94e961f6d32264e0334aec (patch) | |
| tree | 06638976b06f019ea4037175ff228f8271057c44 /hello-efi/main.c | |
Diffstat (limited to '')
| -rw-r--r-- | hello-efi/main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hello-efi/main.c b/hello-efi/main.c new file mode 100644 index 0000000..46ae5c7 --- /dev/null +++ b/hello-efi/main.c @@ -0,0 +1,11 @@ +#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; +} |
