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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index 8f40aa5f..51496f55 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -77,6 +77,12 @@ int Run0F(x64emu_t *emu, rex_t rex)
             GETGD;

             GD->q[0] = EB->byte[0];

             break;

+        case 0xB7:                      /* MOVZX Gd,Ew */

+            nextop = F8;

+            GETEW;

+            GETGD;

+            GD->q[0] = EW->word[0];

+            break;

 

         case 0xBE:                      /* MOVSX Gd,Eb */

             nextop = F8;