continue working on correct shell loading

This commit is contained in:
2025-10-01 21:15:26 +03:00
parent 2019f87b14
commit 05fa945421
5 changed files with 23 additions and 6 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
#include <stddef.h>
#define KHEAP_START 0xE0000000 // Start of kernel heap
#define KHEAP_INITIAL_SIZE 0x100000 // 1 MiB initial size
#define KHEAP_INITIAL_SIZE 0x400000 // 1 MiB initial size
#define KHEAP_END (KHEAP_START + KHEAP_INITIAL_SIZE)
#define KHEAP_PAGES (KHEAP_INITIAL_SIZE / PAGE_SIZE)