Skip to content

Commit

Permalink
[LA64_DYNAREC] Fixed newly added 66 0F BA /4 BT opcode (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksco authored Feb 9, 2025
1 parent 5212de0 commit 751582d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/dynarec/la64/dynarec_la64_660f.c
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,11 @@ uintptr_t dynarec64_660F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int
u8 &= rex.w ? 0x3f : 15;
IFX (X_CF) {
BSTRPICK_D(x3, ed, u8, u8);
BSTRINS_D(xFlags, x3, 0, 0);
if (la64_lbt) {
X64_SET_EFLAGS(x3, X_CF);
} else {
BSTRINS_D(xFlags, x3, F_CF, F_CF);
}
}
break;
default:
Expand Down

0 comments on commit 751582d

Please sign in to comment.