From faa02fa7b86c04617260c67953901ab6ba663a33 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Thu, 20 Jan 2022 19:05:00 +0100 Subject: [PATCH] Refactor --- kernel/kernel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/kernel.c b/kernel/kernel.c index 2a64f6b..56843b8 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -15,6 +15,7 @@ void init() { println("Allocating VGA memory...", DEFAULT_COLOR); pm_malloc_range(VGA_ADDRESS, VGA_ADDRESS_MAX, true); // force alloc the VGA range + /* // TODO: MAKE THESE DYNAMIC print("Kernel offset: ", DEFAULT_COLOR); println("0x1000", DEFAULT_COLOR); @@ -25,6 +26,7 @@ void init() { print("End: ", DEFAULT_COLOR); println("0xb8fa0", DEFAULT_COLOR); + */ // ENABLE PAGING // TODO: make this work