No more segfault in JIT. Keeps executing the same blocks over and over though...
This commit is contained in:
@@ -23,7 +23,7 @@ auto MI::Read(u32 paddr) const -> u32 {
|
||||
case 0x8: return miIntr.raw & 0x3F;
|
||||
case 0xC: return miIntrMask.raw & 0x3F;
|
||||
default:
|
||||
util::panic("Unhandled MI[{:08X}] read\n", paddr);
|
||||
Util::panic("Unhandled MI[{:08X}] read\n", paddr);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ void MI::Write(Registers& regs, u32 paddr, u32 val) {
|
||||
UpdateInterrupt(*this, regs);
|
||||
break;
|
||||
default:
|
||||
util::panic("Unhandled MI[{:08X}] write ({:08X})\n", val, paddr);
|
||||
Util::panic("Unhandled MI[{:08X}] write ({:08X})\n", val, paddr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user