arm: dynarmic: Implement icache op handling for 'ic iallu' instruction
This commit is contained in:
parent
84eb3e7d02
commit
c8a67a725d
|
@ -98,6 +98,9 @@ public:
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoU:
|
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoU:
|
||||||
|
parent.ClearInstructionCache();
|
||||||
|
return;
|
||||||
|
|
||||||
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoUInnerSharable:
|
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoUInnerSharable:
|
||||||
default:
|
default:
|
||||||
LOG_DEBUG(Core_ARM, "Unprocesseed instruction cache operation");
|
LOG_DEBUG(Core_ARM, "Unprocesseed instruction cache operation");
|
||||||
|
|
Reference in New Issue