about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64run0f.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index 6fe11ca9..282c0baf 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -156,6 +156,11 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step)
                     return 0;

             }

             break;

+        case 0x0E:                      /* FEMMS */

+            #ifndef TEST_INTERPRETER

+            emit_signal(emu, SIGILL, (void*)R_RIP, 0);

+            #endif

+            break;

 

         case 0x10:                      /* MOVUPS Gx,Ex */

             nextop = F8;