Ignore cache function 24.

This commit is contained in:
Henrik Rydgard 2013-03-04 23:25:44 +01:00
parent b6c5e055c4
commit 062c975b46

View File

@ -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;