From 876970bcfd69ed3742d1a47640aa551578f22919 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 3 Apr 2025 22:19:32 -0400 Subject: load multiboot memory map, heap is done!!! --- kernel/include/comus/mboot.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kernel/include/comus/mboot.h (limited to 'kernel/include') diff --git a/kernel/include/comus/mboot.h b/kernel/include/comus/mboot.h new file mode 100644 index 0000000..f89427e --- /dev/null +++ b/kernel/include/comus/mboot.h @@ -0,0 +1,16 @@ +/** + * @file mboot.h + * + * @author Freya Murphy + * + * Multiboot functions + */ + +#ifndef MBOOT_H_ +#define MBOOT_H_ + +#include + +void mboot_load_mmap(volatile void *mboot, struct memory_map *map); + +#endif /* mboot.h */ -- cgit v1.2.3-freya