From 1a750182d625a80d4f89fa9f046a447f0cd50aed Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Fri, 26 Mar 2021 21:40:39 +0100 Subject: [DYNAREC] Added some more 66 0F opcodes, plus a few small bug fixes --- src/emu/x64run660f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu') diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index a6d6acd5..7227f6f0 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -862,14 +862,14 @@ int Run660F(x64emu_t *emu, rex_t rex) case 0xC4: /* PINSRW Gx,Ew,Ib */ nextop = F8; - GETED(0); + GETED(1); GETGX; tmp8u = F8; GX->uw[tmp8u&7] = ED->word[0]; // only low 16bits break; case 0xC5: /* PEXTRW Gw,Ex,Ib */ nextop = F8; - GETEX(0); + GETEX(1); GETGD; tmp8u = F8; GD->dword[0] = EX->uw[tmp8u&7]; // 16bits extract, 0 extended -- cgit 1.4.1