From af7bfc7de77d5d5af6c0725d1a68df5eccfc7f85 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 30 Mar 2021 21:02:19 +0200 Subject: Added F2 0F 12 opcode ([DYNAREC] too) --- src/emu/x64runf20f.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/emu') diff --git a/src/emu/x64runf20f.c b/src/emu/x64runf20f.c index 18ec9645..44e77a1b 100644 --- a/src/emu/x64runf20f.c +++ b/src/emu/x64runf20f.c @@ -53,6 +53,12 @@ int RunF20F(x64emu_t *emu, rex_t rex) GETGX; EX->q[0] = GX->q[0]; break; + case 0x12: /* MOVDDUP Gx, Ex */ + nextop = F8; + GETEX(0); + GETGX; + GX->q[1] = GX->q[0] = EX->q[0]; + break; case 0x2A: /* CVTSI2SD Gx, Ed */ nextop = F8; -- cgit 1.4.1