Trying to fix kheap...
This commit is contained in:
@@ -10,8 +10,6 @@
|
||||
#include "drivers/idt.h"
|
||||
#include "drivers/timer.h"
|
||||
#include "drivers/keyboard.h"
|
||||
#include "drivers/paging.h"
|
||||
#include "drivers/kheap.h"
|
||||
#include "shell/shell.h"
|
||||
#include "libc/stdio.h"
|
||||
|
||||
@@ -37,7 +35,7 @@ void kernel_main() {
|
||||
printf_color("\n[INFO]", LIGHT_CYAN, BLACK);
|
||||
printf_color(" - Loaded PS/2 driver", WHITE, BLACK);
|
||||
|
||||
printf_color("\n[TEST]", LIGHT_BROWN, BLACK); // Testing heap
|
||||
/* printf_color("\n[TEST]", LIGHT_BROWN, BLACK); // Testing heap
|
||||
printf_color(" - Allocating heap blocks..\n", LIGHT_BROWN, BLACK);
|
||||
|
||||
uint32_t x = kmalloc(8), y = kmalloc(16), z = kmalloc(32);
|
||||
@@ -48,7 +46,7 @@ void kernel_main() {
|
||||
kfree((void*)x), kfree((void*)y), kfree((void*)z);
|
||||
|
||||
printf_color("\n[STATUS]", LIGHT_GREEN, BLACK);
|
||||
printf_color(" - Heap worked successfullt!", WHITE, BLACK);
|
||||
printf_color(" - Heap worked successfullt!", WHITE, BLACK); */
|
||||
|
||||
iceos_ascii_logo();
|
||||
init_prompt(); // Initialize frame buffer
|
||||
|
||||
Reference in New Issue
Block a user