diff options
| author | Kris Henriksen <krishenriksen@users.noreply.github.com> | 2021-04-13 23:06:08 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-13 23:06:08 +0700 |
| commit | 1e3f277a7187e69c03d7a1ae5b9923c78c965cd0 (patch) | |
| tree | 824a4646be2c766f31e6c220260373238d2316a3 /src | |
| parent | 3adeabb06d9221b678f3b28726e776acb9332826 (diff) | |
| download | box64-1e3f277a7187e69c03d7a1ae5b9923c78c965cd0.tar.gz box64-1e3f277a7187e69c03d7a1ae5b9923c78c965cd0.zip | |
Update x64runf30f.c
For opcodes: 1688|0x40ee00: Unimplemented Opcode (90) F3 0F 1E FA 31 ED 49 89 D1 5E 48 89 E2 48 83 1688|0x40eeb0: Unimplemented Opcode (00) F3 0F 1E FA 80 3D A5 FA EE 00 00 75 13 55 48 1688|0x9ca7d8: Unimplemented Opcode (00) F3 0F 1E FA 48 83 EC 08 48 83 C4 08 C3 00 00
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 +} |