RSP: fix display of VRCP instruction

This commit is contained in:
zilmar 2023-09-28 11:54:50 +09:30
parent b1240072c6
commit 0bd6a96118
1 changed files with 1 additions and 0 deletions

View File

@ -552,6 +552,7 @@ void RSPInstruction::DecodeCop2Name(void)
case RSP_VECTOR_VRCP:
strcpy(m_Name, "VRCP");
sprintf(m_Param, "$v%d[%d], $v%d%s", m_Instruction.sa, m_Instruction.rd & 0x7, m_Instruction.rt, ElementSpecifier(m_Instruction.e));
break;
case RSP_VECTOR_VRCPL:
strcpy(m_Name, "VRCPL");
sprintf(m_Param, "$v%d[%d], $v%d%s", m_Instruction.sa, m_Instruction.rd & 0x7, m_Instruction.rt, ElementSpecifier(m_Instruction.e));