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.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index c53028b5..dd0ebdfa 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -250,6 +250,18 @@ x64emurun:
                 GD->dword[0] = (uint32_t)(uintptr_t)ED;
             break;
 
+        case 0xCC:                      /* INT 3 */
+            x64Int3(emu);
+            if(emu->quit) goto fini;
+            break;
+
+        case 0xE8:                      /* CALL Id */
+            tmp32s = F32S; // call is relative
+            Push(emu, R_RIP);
+            R_RIP += tmp32s;
+            STEP
+            break;
+
         case 0xFF:                      /* GRP 5 Ed */
             nextop = F8;
             GETED;