about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64run.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index d3431c87..2566009e 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -1007,7 +1007,12 @@ x64emurun:
                     }
             }
             break;
-
+        case 0xC2:                      /* RETN Iw */
+            tmp16u = F16;
+            R_RIP = Pop(emu);
+            R_RSP += tmp16u;
+            STEP
+            break;
         case 0xC3:                      /* RET */
             R_RIP = Pop(emu);
             STEP