2023-05-18 01:16:53 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "boot/limine.h"
|
|
|
|
|
|
|
|
namespace boot {
|
|
|
|
|
|
|
|
const limine_memmap_response& GetMemoryMap();
|
|
|
|
uint64_t GetHigherHalfDirectMap();
|
|
|
|
|
2023-05-29 00:32:54 -07:00
|
|
|
const limine_module_response& GetModules();
|
|
|
|
|
2023-06-07 16:24:13 -07:00
|
|
|
void* GetRsdpAddr();
|
|
|
|
|
2023-05-18 01:16:53 -07:00
|
|
|
} // namespace boot
|