mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-02 05:06:59 +03:00
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
|