Skip to content
Snippets Groups Projects
Commit c8a67a72 authored by jam1garner's avatar jam1garner
Browse files

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

parent 84eb3e7d
No related branches found
No related tags found
No related merge requests found
...@@ -98,6 +98,9 @@ public: ...@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment