mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
MMU: Don't generate virtual memory area on 32bit builds.
There is no JIT, so no need for fastmem. This memory won't be used at all.
This commit is contained in:
@ -1206,7 +1206,10 @@ void DBATUpdated()
|
|||||||
UpdateFakeMMUBat(dbat_table, 0x40000000);
|
UpdateFakeMMUBat(dbat_table, 0x40000000);
|
||||||
UpdateFakeMMUBat(dbat_table, 0x70000000);
|
UpdateFakeMMUBat(dbat_table, 0x70000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef _ARCH_32
|
||||||
Memory::UpdateLogicalMemory(dbat_table);
|
Memory::UpdateLogicalMemory(dbat_table);
|
||||||
|
#endif
|
||||||
|
|
||||||
// IsOptimizable*Address and dcbz depends on the BAT mapping, so we need a flush here.
|
// IsOptimizable*Address and dcbz depends on the BAT mapping, so we need a flush here.
|
||||||
JitInterface::ClearSafe();
|
JitInterface::ClearSafe();
|
||||||
|
Reference in New Issue
Block a user