mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Merge pull request #5554 from hilesaz/master
Implemented sceKernelICacheInvalidateRange
This commit is contained in:
commit
afdaaf3170
@ -351,6 +351,9 @@ int sceKernelDcacheInvalidateRange(u32 addr, int size)
|
||||
int sceKernelIcacheInvalidateRange(u32 addr, int size) {
|
||||
DEBUG_LOG(CPU,"sceKernelIcacheInvalidateRange(%08x, %i)", addr, size);
|
||||
// TODO: Make the JIT hash and compare the touched blocks.
|
||||
if(MIPSComp::jit){
|
||||
MIPSComp::jit->ClearCacheAt(addr, size);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user