From 31f671f2137bc09e62de09142bea232c1975c76b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 26 Apr 2020 20:12:05 +0200 Subject: Complete rewrite of paging and allocation libs -> This was REALLY needed. --- src/kernel/graphics/vesa.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/kernel/graphics/vesa.c') diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index e8ef0e0..f116146 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -184,11 +184,11 @@ void set_optimal_resolution() uint32_t fb_size = vbe_width * vbe_height * vbe_bpl; cursor_buffer = kmalloc(fb_size); - for (uint32_t z = 0; z < fb_size; z += 4096) { - paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED); - paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z, - PT_PRESENT | PT_RW | PT_USED); - } + /* for (uint32_t z = 0; z < fb_size; z += 4096) { */ + /* paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED); */ + /* paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z, */ + /* PT_PRESENT | PT_RW | PT_USED); */ + /* } */ if (vbe_height > 1440) vesa_set_font(32); @@ -368,4 +368,4 @@ void vesa_set_color(uint32_t color) { vesa_convert_color(terminal_color, color); vesa_convert_color(terminal_background, default_background_color); -} \ No newline at end of file +} -- cgit v1.2.3