ZOVboot/limine/common/sys/e820.h
2026-03-13 14:19:46 +00:00

13 lines
204 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