Skip to content

Commit

Permalink
[INTERPRETER] CE opcode is only for 32bits
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Feb 4, 2024
1 parent 3e8da0c commit e4f56f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/emu/x64run.c
Original file line number Diff line number Diff line change
Expand Up @@ -1436,6 +1436,10 @@ int Run(x64emu_t *emu, int step)
}
break;
case 0xCE: /* INTO */
if(!rex.is32bits) {
unimp = 1;
goto fini;
}
emu->old_ip = R_RIP;
#ifndef TEST_INTERPRETER
CHECK_FLAGS(emu);
Expand Down

0 comments on commit e4f56f0

Please sign in to comment.