From b0258af5305c619cfed9dd17f1ac67461d1bb33e Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Mon, 25 May 2020 10:28:30 +0100 Subject: [PATCH] DSP/Interpreter: fix comments not matching opcode table --- Source/Core/Core/DSP/Interpreter/DSPIntMisc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/DSP/Interpreter/DSPIntMisc.cpp b/Source/Core/Core/DSP/Interpreter/DSPIntMisc.cpp index 08563a5e05..2285aec37f 100644 --- a/Source/Core/Core/DSP/Interpreter/DSPIntMisc.cpp +++ b/Source/Core/Core/DSP/Interpreter/DSPIntMisc.cpp @@ -110,7 +110,7 @@ void addarn(const UDSPInstruction opc) //---- // SBCLR #I -// 0001 0011 aaaa aiii +// 0001 0010 aaaa aiii // bit of status register $sr. Bit number is calculated by adding 6 to // immediate value I. void sbclr(const UDSPInstruction opc) @@ -120,7 +120,7 @@ void sbclr(const UDSPInstruction opc) } // SBSET #I -// 0001 0010 aaaa aiii +// 0001 0011 aaaa aiii // Set bit of status register $sr. Bit number is calculated by adding 6 to // immediate value I. void sbset(const UDSPInstruction opc)