diff options
author | Marvin Borner | 2019-10-24 21:58:46 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-24 21:58:46 +0200 |
commit | 389554a245cd8660d63e2cf81e6d9ac78bfea04a (patch) | |
tree | 03d7c55167dc08fa60d4586714fefa96c0f6b317 /src/kernel/paging | |
parent | 5329b26ff809798085ef9e6d049ef5ac09c7e435 (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.c | 2 |
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) { |