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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 66db0709..d25ba332 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -243,6 +243,16 @@ x64emurun:
                 ED->dword[0] = GD->dword[0];
             break;
 
+        case 0x8D:                      /* LEA Gd,M */
+            nextop = F8;
+            GETED;
+            GETGD;
+            if(rex.w)
+                GD->q[0] = (uint64_t)ED;
+            else
+                GD->dword[0] = (uint32_t)ED;
+            break;
+
         default:
             unimp = 1;
             goto fini;