diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run660f.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index a98cc3c9..5439ff5f 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -279,6 +279,17 @@ int Run660F(x64emu_t *emu, rex_t rex) } break; + case 0x0E: /* PBLENDW Gx, Ex, Ib */ + nextop = F8; + GETEX(1); + GETGX; + tmp8u = F8; + for (int i=0; i<8; ++i) { + if(tmp8u&(1<<i)) + GX->uw[i] = EX->uw[i]; + } + break; + case 0x17: // PTEST GX, EX nextop = F8; GETEX(0); |