arm: dynarmic: Implement icache op handling for 'ic iallu' instruction

This commit is contained in:
jam1garner 2021-11-21 21:18:56 -05:00
parent 84eb3e7d02
commit c8a67a725d

View File

@ -98,6 +98,9 @@ public:
return;
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoU:
parent.ClearInstructionCache();
return;
case Dynarmic::A64::InstructionCacheOperation::InvalidateAllToPoUInnerSharable:
default:
LOG_DEBUG(Core_ARM, "Unprocesseed instruction cache operation");