refactor: fix release building for aarch64 and arm

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-01-11 07:11:28 +02:00
parent 75c8dbd31b
commit 3af04bce80
16 changed files with 40 additions and 10 deletions

View File

@ -36,7 +36,9 @@ namespace Memory
this->PTEIndex = Address & 0x3FF;
Address >>= 10;
this->PDEIndex = Address & 0x3FF;
#elif defined(__aarch64__)
#else
#warning "not implemented"
UNUSED(Address);
#endif
if (VirtualAddress > PAGE_SIZE)