mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-02 02:49:15 +00:00
refactor: fix release building for aarch64 and arm
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -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)
|
||||
|
@ -330,6 +330,8 @@ namespace Memory
|
||||
MgrLock.Lock(__FUNCTION__);
|
||||
#else
|
||||
#warning "Not implemented"
|
||||
UNUSED(AddressToMap);
|
||||
UNUSED(RealAddress);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user