about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-08 17:07:14 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-08 17:07:14 +0100
commit448e5155a416cd3c71ed90480438a0d9f8c2b700 (patch)
tree1c55d0927703487d9a6d10d9e0fb41ffcdd85073 /src
parent3ee26b727ceaae76fe82a2045fb86c938fe63357 (diff)
downloadbox64-448e5155a416cd3c71ed90480438a0d9f8c2b700.tar.gz
box64-448e5155a416cd3c71ed90480438a0d9f8c2b700.zip
Fixed non-REX.W 8D LEA opcode
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index fbd87edf..c95a7fbb 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -432,7 +432,7 @@ x64emurun:
             if(rex.w)
                 GD->q[0] = (uint64_t)ED;
             else
-                GD->dword[0] = (uint32_t)(uintptr_t)ED; // RAZ upper part?
+                GD->q[0] = (uint32_t)(uintptr_t)ED;
             break;
 
         case 0x90:                      /* NOP */