mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Fastmem writes for x86-64.
This commit is contained in:
parent
18abc33306
commit
2a339c926e
9 changed files with 107 additions and 85 deletions
|
@ -153,6 +153,19 @@ bool DisassembleMov(const unsigned char *codePtr, InstructionInfo *info)
|
|||
}
|
||||
}
|
||||
|
||||
case 0x88: // mem <- r8
|
||||
{
|
||||
info->isMemoryWrite = true;
|
||||
if (info->operandSize == 4)
|
||||
{
|
||||
info->operandSize = 1;
|
||||
break;
|
||||
}
|
||||
else
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
||||
case 0x89: // mem <- r16/32/64
|
||||
{
|
||||
info->isMemoryWrite = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue