From 0bd6a961181e978d66b325e14d2068022d2497d7 Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 28 Sep 2023 11:54:50 +0930 Subject: [PATCH] RSP: fix display of VRCP instruction --- Source/Project64-rsp-core/cpu/RSPiInstruction.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Project64-rsp-core/cpu/RSPiInstruction.cpp b/Source/Project64-rsp-core/cpu/RSPiInstruction.cpp index 7fb64b911..9e7736c3e 100644 --- a/Source/Project64-rsp-core/cpu/RSPiInstruction.cpp +++ b/Source/Project64-rsp-core/cpu/RSPiInstruction.cpp @@ -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));