x86_64: initialise memblock using e820

This commit is contained in:
2023-02-05 10:50:13 +00:00
parent 21907010bd
commit b9b3794aee
5 changed files with 111 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
#ifndef ARCH_E820_H_
#define ARCH_E820_H_
#include <stddef.h>
#include <arch/multiboot.h>
extern void e820_scan(multiboot_memory_map_t *mmap, size_t len);
#endif