diff options
author | Marvin Borner | 2020-08-26 18:01:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-26 18:01:03 +0200 |
commit | 3f1668290da19734dcbfed633b6f415d1fa21a1a (patch) | |
tree | 85fa32e14c0db07f98b872f6ba9bf9ac6b4de9ca /kernel/main.c | |
parent | ae31470ce5d666981ab1fe50cb2b4b38ca4b113f (diff) |
Started stack allocator.
This will replace the current linear allocator so we can free and
realloc memory correctly. This is especially important for the window
resizing due to a fixed LFB size.
Diffstat (limited to 'kernel/main.c')
-rw-r--r-- | kernel/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/main.c b/kernel/main.c index e97dad1..7d87be5 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -13,8 +13,7 @@ void kernel_main(struct vid_info *vid_info) { - HEAP = 0x00f00000; - HEAP_START = HEAP; // For malloc function + heap_init(0x00f00000); boot_passed = vid_info; |