From 5cb5188112476b82af1e9f0a8f61866becca31e0 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 8 Apr 2019 18:24:00 +0200 Subject: Initial commit --- init/init.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 init/init.c (limited to 'init/init.c') diff --git a/init/init.c b/init/init.c new file mode 100644 index 0000000..00836b5 --- /dev/null +++ b/init/init.c @@ -0,0 +1,13 @@ +#include +#include + +int main(int argc, char* argv[]) +{ + printf("I'm a kernel!\r\n"); + + while(1) + { + printf("Still running!\r\n"); + sleep(1); + } +} -- cgit v1.2.3