diff options
author | Marvin Borner | 2019-10-03 00:39:11 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-03 00:39:11 +0200 |
commit | dc7f3bccef43d1483a8a234df85f67f6869e75ba (patch) | |
tree | 4f88e994c33c5cfc0062e16a2f99a79236da95f8 /src/kernel/kernel.c | |
parent | 7e81739528577c2e7f92b42b2d186b63fdd3d6d5 (diff) |
Began replacement of VGA functions
Why does VGA/VESA not work when running on real hardware?
Diffstat (limited to 'src/kernel/kernel.c')
-rw-r--r-- | src/kernel/kernel.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c index 6b1faf7..f6ec4df 100644 --- a/src/kernel/kernel.c +++ b/src/kernel/kernel.c @@ -8,14 +8,14 @@ #include "paging/kheap.h" void init() { + timer_install(); gdt_install(); idt_install(); isrs_install(); irq_install(); - timer_install(); - terminal_initialize(); - // init_kheap(); - // page_init(); + // terminal_initialize(); // TODO: Re[ace VGA functions with VESA + init_kheap(); + page_init(); keyboard_install(); // mouse_install(); asm volatile ("sti"); @@ -23,10 +23,15 @@ void init() { void kernel_main(void) { set_optimal_resolution(); - // vbe_set_mode(0x11B); init(); - terminal_write_string("Melvix loaded successfully!\n"); - terminal_write_string("Loading VESA!\n"); + info("Melvix loaded successfully!"); + info("Loading VESA..."); + + if (vesa_available) { + info("Loaded VESA!"); + } else { + warn("VESA loading failed!"); + } // __asm__ ("div %0" :: "r"(0)); // Exception testing x/0 for (;;); |