summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-03-19 13:03:52 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-03-19 13:03:52 -0400
commitf004c1ade8d617a82cea2fe249434cccb47a2358 (patch)
tree34571e76039cf2ee2fee93c3f1bdb1bc6d2de5f6 /main.c
parentdd5d9e1d48396cbc226ff14fe557a55613c91fcb (diff)
downloadjove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.tar.gz
jove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.tar.bz2
jove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.zip
rename abi to sys. better memory allocation
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/main.c b/main.c
index 9341489..91125af 100644
--- a/main.c
+++ b/main.c
@@ -3,8 +3,8 @@
#include "mem/memory.h"
#include "mem/zone.h"
#include "boot/cmdline.h"
-#include "tsk/tasking.h"
#include "ird/initrd.h"
+#include "usr/tasking.h"
#include "usr/umode.h"
#include "lib/jove.h"
@@ -12,15 +12,14 @@ void
kernel_main(void)
{
serial_setup();
- //arch_tables_setup();
+ arch_tables_setup();
mem_setup();
cmdline_kernel_setup();
+ initrd_setup();
tasking_setup();
-
- initrd_setup();
umode_setup();
kpanic("Reached end of kernel main\n");