ARM_Interface: Implement PageTableChanged

This commit is contained in:
MerryMage 2017-09-24 22:44:13 +01:00
parent ecf27fbf82
commit 0e49bffe03
6 changed files with 39 additions and 6 deletions

View file

@ -25,6 +25,10 @@ void ARM_DynCom::ClearInstructionCache() {
trans_cache_buf_top = 0;
}
void ARM_DynCom::PageTableChanged() {
ClearInstructionCache();
}
void ARM_DynCom::SetPC(u32 pc) {
state->Reg[15] = pc;
}