mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 12:47:25 +00:00
16 lines
252 B
C
16 lines
252 B
C
/**
|
|
* @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 */
|