diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-08 10:08:16 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-08 10:08:16 +0200 |
| commit | afe5148211a8ffb84124d3b58e14340948a2663a (patch) | |
| tree | bb36b2a8f452e48556e97426273fc717a28383c1 /src | |
| parent | 5ab1606c4734f1c8acecce45cfc33848ab038b7c (diff) | |
| download | box64-afe5148211a8ffb84124d3b58e14340948a2663a.tar.gz box64-afe5148211a8ffb84124d3b58e14340948a2663a.zip | |
Added 66 0F 38 15 opcode
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run660f.c | 9 |
1 files changed, 9 insertions, 0 deletions
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; |