mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 10:51:06 +00:00
Ignore cache function 24.
This commit is contained in:
parent
b6c5e055c4
commit
062c975b46
@ -150,6 +150,10 @@ namespace MIPSInt
|
||||
|
||||
// It appears that a cache line is 0x40 (64) bytes.
|
||||
switch (func) {
|
||||
case 24:
|
||||
// "Create Dirty Exclusive" - for avoiding a cacheline fill before writing to it.
|
||||
// Will cause garbage on the real machine so we just ignore it, the app will overwrite the cacheline.
|
||||
break;
|
||||
case 25: // Hit Invalidate - zaps the line if present in cache. Should not writeback???? scary.
|
||||
// No need to do anything.
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user