rulimine/common/sys/e820.h

14 lines
208 B
C
Raw Normal View History

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>
#include <mm/pmm.h>
2020-03-27 03:59:11 +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