CDROM: Implement get version and getstat commands

This commit is contained in:
Connor McLaughlin
2019-09-17 22:18:58 +10:00
parent b951f27381
commit e3c6035152
8 changed files with 159 additions and 12 deletions

View File

@ -606,6 +606,7 @@ void Core::ExecuteInstruction(Instruction inst)
case InstructionFunct::syscall:
{
Log_DebugPrintf("Syscall 0x%X(0x%X)", m_regs.s0, m_regs.a0);
RaiseException(Exception::Syscall);
}
break;