From a9e0fe6db2323bd51c1cd03dd93a3856fcba7a2b Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 26 Oct 2019 15:39:07 +1000 Subject: [PATCH] cpu: Remove superfluous logging for syscall --- src/core/cpu_core.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/cpu_core.cpp b/src/core/cpu_core.cpp index 924004ecf..d54674cc2 100644 --- a/src/core/cpu_core.cpp +++ b/src/core/cpu_core.cpp @@ -846,7 +846,6 @@ void Core::ExecuteInstruction() case InstructionFunct::syscall: { - Log_DebugPrintf("Syscall 0x%X(0x%X)", m_regs.s0, m_regs.a0); RaiseException(Exception::Syscall); } break;