diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-06-05 22:04:02 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-06-05 22:04:02 -0700 |
commit | aaab91b82f5d342056b2b15accd97c3d6c001cd8 (patch) | |
tree | 7641a4b52d27d61f02524a5ad801e5ccfe49ab46 | |
parent | 8122f5d39166f5167aff376e0015069e41b20fa0 (diff) | |
download | mu-aaab91b82f5d342056b2b15accd97c3d6c001cd8.tar.gz |
6478
Fix CI.
-rw-r--r-- | 018jump_disp32.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/018jump_disp32.cc b/018jump_disp32.cc index c39da70e..4166fb60 100644 --- a/018jump_disp32.cc +++ b/018jump_disp32.cc @@ -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; |