about summary refs log tree commit diff
path: root/boot
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-02-16 21:53:07 +0100
committerMel <mel@rnrd.eu>2025-02-16 21:58:50 +0100
commit66adbe28c7b7e714b18c4c21def4a7470fdd79a9 (patch)
tree8f5db4144a2f462d65652baad60e9a08e8eb68bc /boot
parent2135ff9f586e43770e1ba9963aa5a9aaff110a81 (diff)
downloadcatskill-66adbe28c7b7e714b18c4c21def4a7470fdd79a9.tar.zst
catskill-66adbe28c7b7e714b18c4c21def4a7470fdd79a9.zip
Add bootstrap entrypoint
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot')
-rw-r--r--boot/catboot.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/boot/catboot.c b/boot/catboot.c
new file mode 100644
index 0000000..a021a2b
--- /dev/null
+++ b/boot/catboot.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main() {
+    printf("hi meow!!");
+}