Skip to content

Commit

Permalink
6478
Browse files Browse the repository at this point in the history
Fix CI.
  • Loading branch information
akkartik committed Jun 6, 2020
1 parent 8122f5d commit aaab91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 018jump_disp32.cc
Expand Up @@ -168,7 +168,7 @@ case 0x8f: { // jump disp32 if !SF and !ZF
break;
}
case 0x87: { // jump disp32 if !CF and !ZF
const int32_t offset = next();
const int32_t offset = next32();
if (!CF && !ZF) {
trace(Callstack_depth+1, "run") << "jump " << offset << end();
EIP += offset;
Expand Down

0 comments on commit aaab91b

Please sign in to comment.