aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/paging
diff options
context:
space:
mode:
authorMarvin Borner2019-10-24 21:58:46 +0200
committerMarvin Borner2019-10-24 21:58:46 +0200
commit389554a245cd8660d63e2cf81e6d9ac78bfea04a (patch)
tree03d7c55167dc08fa60d4586714fefa96c0f6b317 /src/kernel/paging
parent5329b26ff809798085ef9e6d049ef5ac09c7e435 (diff)
Re-enabled non-paging vesa drawing
I still can't exactly find the bug with paging and vesa drawing but it works when paging is disabled.
Diffstat (limited to 'src/kernel/paging')
-rw-r--r--src/kernel/paging/kheap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/paging/kheap.c b/src/kernel/paging/kheap.c
index 17fc0e7..9feae77 100644
--- a/src/kernel/paging/kheap.c
+++ b/src/kernel/paging/kheap.c
@@ -5,8 +5,8 @@
#include "../system.h"
extern uint32_t end;
-uint32_t placement_address = (uint32_t) &end;
extern page_directory_t *kernel_directory;
+uint32_t placement_address = (uint32_t) &end;
heap_t *kheap = 0;
uint32_t kmalloc_int(uint32_t sz, int align, uint32_t *phys) {