about summary refs log tree commit diff stats
path: root/018jump_disp32.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-22 23:20:44 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-22 23:20:44 -0800
commitce27f90f05edc605dd519b0794273233c2951a6b (patch)
tree911c44c2ce4c75a88752739254178959c5f86841 /018jump_disp32.cc
parent40dbfe20d14309a4978a13b3a4701d03f21d4a32 (diff)
downloadmu-ce27f90f05edc605dd519b0794273233c2951a6b.tar.gz
5821 - now translating function arguments
See test-convert-function-with-arg-and-body.
Diffstat (limited to '018jump_disp32.cc')
-rw-r--r--018jump_disp32.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/018jump_disp32.cc b/018jump_disp32.cc
index 13b62b06..1ac4f9ec 100644
--- a/018jump_disp32.cc
+++ b/018jump_disp32.cc
@@ -293,7 +293,7 @@ case 0x8c: {  // jump disp32 if SF and !ZF
   }
   break;
 }
-case 0x72: {  // jump disp32 if CF
+case 0x82: {  // jump disp32 if CF
   const int32_t offset = next32();
   if (CF) {
     trace(Callstack_depth+1, "run") << "jump " << offset << end();