From dd5d9e1d48396cbc226ff14fe557a55613c91fcb Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 15 Mar 2024 13:16:02 -0400 Subject: better buddy memory allocator --- boot/boot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot/boot.h') diff --git a/boot/boot.h b/boot/boot.h index d7571d8..cfdfa68 100644 --- a/boot/boot.h +++ b/boot/boot.h @@ -11,7 +11,7 @@ struct MemoryMapEntry { bool usable; }; -#define MEMORY_MAP_MAX_ENTRIES 64 +#define MEMORY_MAP_MAX_ENTRIES 128 struct MemoryMap { size_t count; struct MemoryMapEntry entries[MEMORY_MAP_MAX_ENTRIES]; -- cgit v1.2.1