#include "arch/memory/paging_root.hpp" #include #include namespace arch::memory { namespace { constexpr auto recursive_base = std::uintptr_t{0177777'776'776'776'776'0000uz}; } // namespace auto paging_root::get() -> paging_root * { return std::bit_cast(recursive_base); } } // namespace arch::memory