diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-07 17:26:27 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-07 17:26:27 +0200 |
| commit | 928eb2a32b9430c786cdfe7313112f6f6ea9dd25 (patch) | |
| tree | a47acd35c8f09c6fa0a471bcc7b2f7047c934b45 /src/emu | |
| parent | 1c0b1721cd4142bc164648e8e644ac4b7c34a3a5 (diff) | |
| download | box64-928eb2a32b9430c786cdfe7313112f6f6ea9dd25.tar.gz box64-928eb2a32b9430c786cdfe7313112f6f6ea9dd25.zip | |
Added dummy 0F 09 opcode ([DYNAREC] too) (for #34)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run0f.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 89c005a1..0e430904 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -49,6 +49,9 @@ int Run0F(x64emu_t *emu, rex_t rex) x64Syscall(emu); break; + case 0x09: /* WBINVD */ + break; + case 0x0B: /* UD2 */ emit_signal(emu, SIGILL, (void*)R_RIP, 0); break; |