DSP/Interpreter: fix comments not matching opcode table

This commit is contained in:
Tillmann Karras 2020-05-25 10:28:30 +01:00
parent 198a307db3
commit b0258af530

View File

@ -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)