CPU/Recompiler: Implement mfhi/mthi/mflo/mtlo

This commit is contained in:
Connor McLaughlin
2019-11-22 00:51:16 +10:00
parent 51a873e58d
commit e5c0d28fdc
4 changed files with 43 additions and 7 deletions

View File

@ -74,10 +74,6 @@ bool Core::DoState(StateWrapper& sw)
sw.Do(&m_pending_ticks);
sw.Do(&m_downcount);
sw.DoArray(m_regs.r, countof(m_regs.r));
sw.Do(&m_regs.pc);
sw.Do(&m_regs.hi);
sw.Do(&m_regs.lo);
sw.Do(&m_regs.npc);
sw.Do(&m_cop0_regs.BPC);
sw.Do(&m_cop0_regs.BDA);
sw.Do(&m_cop0_regs.TAR);