diff options
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; |