From 7faa4704e6502a13aa6a56c10dd5f2c2c7c99107 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 30 May 2021 09:05:48 +0200 Subject: Handling F0 66 prefix same as 66 F0 --- src/emu/x64runf0.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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; -- cgit 1.4.1