diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64runf30f.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emu/x64runf30f.c b/src/emu/x64runf30f.c index aa3c9d76..d599136f 100644 --- a/src/emu/x64runf30f.c +++ b/src/emu/x64runf30f.c @@ -309,8 +309,13 @@ int RunF30F(x64emu_t *emu, rex_t rex) GX->d[0] = EX->sd[0]; break; + case 0x1E: /* NOP (multi-byte), endbr64 */ + nextop = F8; + GETED(0); + break; + default: return 1; } return 0; -} \ No newline at end of file +} |