mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
Prefetch byteswapped opcodes in ppu interpreter
This commit is contained in:
parent
1c462abc37
commit
b307aff9eb
3 changed files with 52 additions and 61 deletions
|
@ -364,7 +364,7 @@ namespace vm
|
|||
|
||||
if (flags & page_executable)
|
||||
{
|
||||
utils::memory_commit(g_exec_addr + addr, size);
|
||||
utils::memory_commit(g_exec_addr + addr * 2, size * 2);
|
||||
}
|
||||
|
||||
if (g_cfg.core.ppu_debug)
|
||||
|
@ -494,7 +494,7 @@ namespace vm
|
|||
|
||||
if (is_exec)
|
||||
{
|
||||
utils::memory_decommit(g_exec_addr + addr, size);
|
||||
utils::memory_decommit(g_exec_addr + addr * 2, size * 2);
|
||||
}
|
||||
|
||||
if (g_cfg.core.ppu_debug)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue