summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-02 04:10:52 -0400
committerIan Moffett <ian@osmora.org>2025-07-02 04:10:52 -0400
commitf2431049cf6e12b359b6a9df0c778b1e30f683e0 (patch)
treec9a7478a536ce593407545bf515d10443012ed26 /src
Initial commitmain
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src')
-rw-r--r--src/main.c8
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;
+}