mirror of
https://github.com/ptitSeb/box64.git
synced 2024-11-27 00:30:32 +00:00
Added REX 8D LEA opcode
This commit is contained in:
parent
abb74f7f76
commit
2101c52e2d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user