started 0.10.1 WIP

This commit is contained in:
kalaposfos13
2025-07-06 20:52:44 +02:00
parent f56eecea44
commit 78cb5334cf
2 changed files with 4 additions and 4 deletions

View File

@@ -342,7 +342,7 @@ s32 MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, u64 size, Memo
}
}
// Limit the minumum address to SystemManagedVirtualBase to prevent hardware-specific issues.
// Limit the minimum address to SystemManagedVirtualBase to prevent hardware-specific issues.
VAddr mapped_addr = (virtual_addr == 0) ? impl.SystemManagedVirtualBase() : virtual_addr;
// Fixed mapping means the virtual address must exactly match the provided one.