mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
dyncom: Fix SMULWB/SMULWT
Wasn't doing proper sign-extension
This commit is contained in:
parent
317fe1e528
commit
df5e0f9f28
@ -5891,16 +5891,13 @@ unsigned InterpreterMainLoop(ARMul_State* state) {
|
|||||||
|
|
||||||
SMULW_INST:
|
SMULW_INST:
|
||||||
{
|
{
|
||||||
if ((inst_base->cond == 0xe) || CondPassed(cpu, inst_base->cond)) {
|
if (inst_base->cond == 0xE || CondPassed(cpu, inst_base->cond)) {
|
||||||
smlad_inst *inst_cream = (smlad_inst *)inst_base->component;
|
smlad_inst* const inst_cream = (smlad_inst*)inst_base->component;
|
||||||
int64_t rm = RM;
|
|
||||||
int64_t rn = RN;
|
s16 rm = (inst_cream->m == 1) ? ((RM >> 16) & 0xFFFF) : (RM & 0xFFFF);
|
||||||
if (inst_cream->m)
|
|
||||||
rm = BITS(rm, 16, 31);
|
s64 result = (s64)rm * (s64)(s32)RN;
|
||||||
else
|
RD = BITS(result, 16, 47);
|
||||||
rm = BITS(rm, 0, 15);
|
|
||||||
int64_t rst = rm * rn;
|
|
||||||
RD = BITS(rst, 16, 47);
|
|
||||||
}
|
}
|
||||||
cpu->Reg[15] += GET_INST_SIZE(cpu);
|
cpu->Reg[15] += GET_INST_SIZE(cpu);
|
||||||
INC_PC(sizeof(smlad_inst));
|
INC_PC(sizeof(smlad_inst));
|
||||||
|
Loading…
Reference in New Issue
Block a user