Luna/kernel/include/memory/Memory.h

11 lines
201 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
namespace Memory
{
uint64_t get_system();
uint64_t get_usable();
bool is_user_address(uintptr_t address);
bool is_kernel_address(uintptr_t address);
}