summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-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;
+}