2023-03-10 10:32:50 +00:00
|
|
|
// This file is part of noxos and licensed under the MIT open source license
|
2023-02-05 13:39:35 +00:00
|
|
|
|
|
|
|
#ifndef NOX_MEMORY_MAP_H
|
|
|
|
#define NOX_MEMORY_MAP_H
|
|
|
|
|
|
|
|
#include "utils/stdtypes.h"
|
|
|
|
#include "boot/boot_info.h"
|
|
|
|
|
|
|
|
uint64_t memory_map_get_total_memory_size(boot_info_T* boot_info);
|
|
|
|
|
|
|
|
#endif //NOX_MEMORY_MAP_H
|