From afe5148211a8ffb84124d3b58e14340948a2663a Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 8 Apr 2023 10:08:16 +0200 Subject: Added 66 0F 38 15 opcode --- src/emu/x64run660f.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index a21d9bd3..33ba2c8f 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -394,6 +394,15 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr) GX->ud[i] = EX->ud[i]; } break; + case 0x15: /* BLENDVPD Gx, Ex */ + nextop = F8; + GETEX(0); + GETGX; + for (int i=0; i<2; ++i) { + if(emu->xmm[0].q[i]&0x8000000000000000LL) + GX->q[i] = EX->q[i]; + } + break; case 0x17: // PTEST GX, EX nextop = F8; -- cgit 1.4.1