about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-05 22:04:02 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-05 22:04:02 -0700
commitaaab91b82f5d342056b2b15accd97c3d6c001cd8 (patch)
tree7641a4b52d27d61f02524a5ad801e5ccfe49ab46
parent8122f5d39166f5167aff376e0015069e41b20fa0 (diff)
downloadmu-aaab91b82f5d342056b2b15accd97c3d6c001cd8.tar.gz
6478
Fix CI.
-rw-r--r--018jump_disp32.cc2
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;