diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-05 17:04:05 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-05 17:04:05 +0100 |
| commit | 59a4569a870a835a467e4de3356f097ff5cbdd4e (patch) | |
| tree | d651c7bad0790ad475d0f34e4b97cee43fc11081 | |
| parent | a1e3e0d5b12f2e1b39890585dfa658394901e07b (diff) | |
| download | box64-59a4569a870a835a467e4de3356f097ff5cbdd4e.tar.gz box64-59a4569a870a835a467e4de3356f097ff5cbdd4e.zip | |
Added 90 NOP
| -rwxr-xr-x | src/emu/x64run.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c index 91b4a4fc..a2a2113f 100755 --- a/src/emu/x64run.c +++ b/src/emu/x64run.c @@ -340,6 +340,9 @@ x64emurun: GD->dword[0] = (uint32_t)(uintptr_t)ED; break; + case 0x90: /* NOP */ + break; + case 0x98: /* CWDE */ if(rex.w) emu->regs[_AX].sq[0] = emu->regs[_AX].sdword[0]; |