aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/kernel.c
diff options
context:
space:
mode:
authorMarvin Borner2019-10-12 23:28:01 +0200
committerMarvin Borner2019-10-12 23:31:27 +0200
commit876df2125f4f24803d5471894e5308e7425ebfd2 (patch)
treea91b066e93c6694c41384ae8f2e296167715768c /src/kernel/kernel.c
parentb2f80382659e739d5e37eefff1ebcdfd023bb9fb (diff)
Paging and heap rewrite
VESA drawing causes a Page fault because it tries to use a pointer to the framebuffer which was created before the paging has been initialized. If the resolution is set after the paging has been initialized the CPU throws a triple fault because the int32 call can not happen with paging turned on. To be fixed soon!
Diffstat (limited to 'src/kernel/kernel.c')
-rw-r--r--src/kernel/kernel.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index 30a8e35..e028178 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -9,6 +9,7 @@
#include "paging/kheap.h"
void init() {
+ initialise_paging();
timer_install();
gdt_install();
idt_install();
@@ -16,26 +17,21 @@ void init() {
irq_install();
init_serial();
// terminal_initialize(); // TODO: Replace VGA functions with VESA
- // init_kheap();
- // page_init();
- // keyboard_install();
- // mouse_install();
asm volatile ("sti");
}
void kernel_main(void) {
set_optimal_resolution();
init();
- // info("Melvix loaded successfully!\n\n");
- // info("Loading VESA...");
+ /* TODO: Fix page fault exception
vesa_draw_string("This is a testing text!");
if (vesa_available) {
- write_serial("Loaded VESA!");
+ serial_write("Loaded VESA!\n");
} else {
- write_serial("VESA loading failed!");
- }
+ serial_write("VESA loading failed!\n");
+ }*/
// __asm__ ("div %0" :: "r"(0)); // Exception testing x/0
loop: