diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-02-01 20:08:50 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-02-01 20:09:22 +0100 |
| commit | 7781bfcbac18e77e1d0c624cc33491d26cd0beb9 (patch) | |
| tree | fb2b60f5e86c9856cd270074fba9d3ff15b81e31 /src/emu | |
| parent | 0fd81e067ff4738d09528411ca864fd552f4c6ff (diff) | |
| download | box64-7781bfcbac18e77e1d0c624cc33491d26cd0beb9.tar.gz box64-7781bfcbac18e77e1d0c624cc33491d26cd0beb9.zip | |
Added 0F 0E opcode support ([ARM64_DYNAREC] too)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run0f.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 6fe11ca9..282c0baf 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -156,6 +156,11 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) return 0; } break; + case 0x0E: /* FEMMS */ + #ifndef TEST_INTERPRETER + emit_signal(emu, SIGILL, (void*)R_RIP, 0); + #endif + break; case 0x10: /* MOVUPS Gx,Ex */ nextop = F8; |