minor additions to the kernel heap and adding acpi

This commit is contained in:
2025-05-15 04:22:55 -07:00
parent a9f2826014
commit 50efcc13fe
7 changed files with 279 additions and 6 deletions

View File

@@ -3,6 +3,9 @@
#include <stddef.h>
void heap_init(void *heap_start, void *heap_end);
void *heap_alloc(size_t size);
void heap_free(void *ptr);
#endif // HEAP_H