Skip to content

Commit

Permalink
[DYNAREC] Added 66 FF /6 opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Dec 10, 2023
1 parent 5c54463 commit cbe0ef8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dynarec/dynarec_arm_66.c
Original file line number Diff line number Diff line change
Expand Up @@ -1219,6 +1219,11 @@ uintptr_t dynarec66(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int ninst,
emit_dec16(dyn, ninst, x1, x2, x14);
EWBACK;
break;
case 6:
INST_NAME("PUSH Ew");
GETEW(x1);
PUSH16(x1, xESP);
break;
default:
DEFAULT;
}
Expand Down

0 comments on commit cbe0ef8

Please sign in to comment.