correct interlocked reg for umlal

This commit is contained in:
Jaklyy 2024-06-18 11:12:05 -04:00
parent c5258d6377
commit e6ba4075b9
1 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ void A_UMLAL(ARM* cpu)
!res);
if (cpu->Num==1) cpu->SetC(0);
}
else cpu->SetCycles_L((cpu->CurInstr >> 12) & 0xF, 1, cpu->ILT_Mul); // interlock cycles do not occur with S variants of multiply instructions
else cpu->SetCycles_L((cpu->CurInstr >> 16) & 0xF, 1, cpu->ILT_Mul); // interlock cycles do not occur with S variants of multiply instructions
}
void A_SMULL(ARM* cpu)