diff options
Diffstat (limited to 'kernel/include')
-rw-r--r-- | kernel/include/comus/mboot.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 <freya@freyacat.org> + * + * Multiboot functions + */ + +#ifndef MBOOT_H_ +#define MBOOT_H_ + +#include <comus/memory.h> + +void mboot_load_mmap(volatile void *mboot, struct memory_map *map); + +#endif /* mboot.h */ |