2020-09-21 13:15:55 +03:00
|
|
|
#ifndef __SYS__E820_H__
|
|
|
|
#define __SYS__E820_H__
|
2020-03-27 03:59:11 +03:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2020-05-03 00:38:57 +03:00
|
|
|
#include <stddef.h>
|
2022-08-13 20:54:49 +03:00
|
|
|
#include <mm/pmm.h>
|
2020-03-27 03:59:11 +03:00
|
|
|
|
2022-08-13 20:54:49 +03:00
|
|
|
extern struct memmap_entry e820_map[];
|
2020-05-03 00:38:57 +03:00
|
|
|
extern size_t e820_entries;
|
2020-03-27 03:59:11 +03:00
|
|
|
|
2020-05-03 00:38:57 +03:00
|
|
|
void init_e820(void);
|
2020-03-27 03:59:11 +03:00
|
|
|
|
|
|
|
#endif
|