l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#include <stdint.h>
extern "C"
{
#include <efi.h>
#include <efilib.h>
}
extern "C" EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *systab);
EFI_STATUS
efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
{
EFI_STATUS efi_status = EFI_SUCCESS;
InitializeLib(image, systab);
CHAR16 s[] = L"Hello World from L4\n";
Print(s);
return efi_status;
}