14 lines
208 B
C
14 lines
208 B
C
#ifndef __SYS__E820_H__
|
|
#define __SYS__E820_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <mm/pmm.h>
|
|
|
|
extern struct memmap_entry e820_map[];
|
|
extern size_t e820_entries;
|
|
|
|
void init_e820(void);
|
|
|
|
#endif
|