about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-02-17 23:29:42 +0800
committerGitHub <noreply@github.com>2025-02-17 16:29:42 +0100
commitee5a41e21e01dfc3bf51a8f893ffdea2f2791e52 (patch)
treeee7c3659abc6cf8de0f9514d23d59ed7756861cc /src/emu
parentd49fc437917cbbad9ea556fa373f8a08dafeda65 (diff)
downloadbox64-ee5a41e21e01dfc3bf51a8f893ffdea2f2791e52.tar.gz
box64-ee5a41e21e01dfc3bf51a8f893ffdea2f2791e52.zip
[INTERP] Added 0F 19 NOP opcode ([DYNAREC] too) (#2376)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64run0f.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index ef8c0716..6f600a67 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -283,6 +283,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step)
             }

             break;

 

+        case 0x19:

         case 0x1F:                      /* NOP (multi-byte) */

             nextop = F8;

             FAKEED(0);