cpu: Remove superfluous logging for syscall

This commit is contained in:
Connor McLaughlin 2019-10-26 15:39:07 +10:00
parent 2500f9d3af
commit a9e0fe6db2

View file

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