Skip to content

Commit

Permalink
[DYNAREC] Small change on flags to 66 0F 63 opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed May 19, 2024
1 parent fb1dbb3 commit b044c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/dynarec_arm_660f.c
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ uintptr_t dynarec660F(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int nins

case 0x63:
INST_NAME("PCMPISTRI Gx, Ex, Ib");
SETFLAGS(X_OF|X_CF|X_AF|X_ZF|X_SF|X_PF, SF_SET_DF);
SETFLAGS(X_ALL, SF_SET_DF);
nextop = F8;
GETG;
if(!sse_reflect_reg(dyn, ninst, gd, x2)) {
Expand Down

0 comments on commit b044c19

Please sign in to comment.