about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run0f.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index 07eab35e..c084d1ec 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -58,6 +58,10 @@ int Run0F(x64emu_t *emu)
 

     switch(opcode) {

 

+        case 0x05:                      /* SYSCALL */

+            x64Syscall(emu);

+            break;

+            

         case 0x1F:                      /* NOP (multi-byte) */

             nextop = F8;

             GETED;