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
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ void addarn(const UDSPInstruction opc)
//---- //----
// SBCLR #I // SBCLR #I
// 0001 0011 aaaa aiii // 0001 0010 aaaa aiii
// bit of status register $sr. Bit number is calculated by adding 6 to // bit of status register $sr. Bit number is calculated by adding 6 to
// immediate value I. // immediate value I.
void sbclr(const UDSPInstruction opc) void sbclr(const UDSPInstruction opc)
@ -120,7 +120,7 @@ void sbclr(const UDSPInstruction opc)
} }
// SBSET #I // SBSET #I
// 0001 0010 aaaa aiii // 0001 0011 aaaa aiii
// Set bit of status register $sr. Bit number is calculated by adding 6 to // Set bit of status register $sr. Bit number is calculated by adding 6 to
// immediate value I. // immediate value I.
void sbset(const UDSPInstruction opc) void sbset(const UDSPInstruction opc)