diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-02 04:10:52 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-02 04:10:52 -0400 |
commit | f2431049cf6e12b359b6a9df0c778b1e30f683e0 (patch) | |
tree | c9a7478a536ce593407545bf515d10443012ed26 /src/main.c |
Initial commitmain
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..0623840 --- /dev/null +++ b/src/main.c @@ -0,0 +1,8 @@ +#include <efi.h> + +int +efi_main(void *hand, EFI_SYSTEM_TABLE *systab) { + systab->con_out->output_string(systab->con_out, (int16_t *)L"Hello, World!"); + for(;;); + return 0; +} |