about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-06-24 18:41:10 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-06-24 18:41:10 +0200
commit36f1808615813e85b05c9460d7dd481c4bc20de0 (patch)
treecd00220d269063764f05d3ddbc1f78bede0c13e2 /src
parent0ce5f34f8c14f517b262a1e9331ddeeaa00380de (diff)
downloadbox64-36f1808615813e85b05c9460d7dd481c4bc20de0.tar.gz
box64-36f1808615813e85b05c9460d7dd481c4bc20de0.zip
[INTERPRETER] opcode F1 is valid alson in 64bits
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 9d28ae27..015f2ad1 100644
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -1872,10 +1872,6 @@ x64emurun:
             #endif
             break;
         case 0xF1:                      /* INT1 */
-            if(!rex.is32bits) {
-                unimp = 1;
-                goto fini;
-            }
             emu->old_ip = R_RIP;
             #ifndef TEST_INTERPRETER
             emit_signal(emu, SIGSEGV, (void*)R_RIP, 128);