diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-05-30 09:05:48 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-05-30 09:05:48 +0200 |
| commit | 7faa4704e6502a13aa6a56c10dd5f2c2c7c99107 (patch) | |
| tree | 80b67718fc75031b153fa65bb730d01085a510c3 | |
| parent | ba48b6c7939ef9e704aea8e24c254d79c1d8baf8 (diff) | |
| download | box64-7faa4704e6502a13aa6a56c10dd5f2c2c7c99107.tar.gz box64-7faa4704e6502a13aa6a56c10dd5f2c2c7c99107.zip | |
Handling F0 66 prefix same as 66 F0
| -rw-r--r-- | src/emu/x64runf0.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/x64runf0.c b/src/emu/x64runf0.c index 5366e142..8ad70b78 100644 --- a/src/emu/x64runf0.c +++ b/src/emu/x64runf0.c @@ -495,6 +495,9 @@ int RunF0(x64emu_t *emu, rex_t rex) } break; + case 0x66: + return Run66F0(emu, rex); // more opcode F0 66 and 66 F0 is the same + case 0x81: /* GRP Ed,Id */ case 0x83: /* GRP Ed,Ib */ nextop = F8; |