diff options
| author | Mel <mel@rnrd.eu> | 2025-02-16 21:53:07 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-02-16 21:58:50 +0100 |
| commit | 66adbe28c7b7e714b18c4c21def4a7470fdd79a9 (patch) | |
| tree | 8f5db4144a2f462d65652baad60e9a08e8eb68bc | |
| parent | 2135ff9f586e43770e1ba9963aa5a9aaff110a81 (diff) | |
| download | catskill-66adbe28c7b7e714b18c4c21def4a7470fdd79a9.tar.zst catskill-66adbe28c7b7e714b18c4c21def4a7470fdd79a9.zip | |
Add bootstrap entrypoint
Signed-off-by: Mel <mel@rnrd.eu>
| -rw-r--r-- | boot/catboot.c | 5 |
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!!"); +} |
