about summary refs log tree commit diff stats
path: root/src/emu/x64run660f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/x64run660f.c')
-rw-r--r--src/emu/x64run660f.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c
index 739c9664..84f5a38e 100644
--- a/src/emu/x64run660f.c
+++ b/src/emu/x64run660f.c
@@ -923,7 +923,16 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr)
                         GX->ud[i] = EX->ud[i];

                 }

                 break;

-

+            case 0x0D:  /* PBLENDPD Gx, Ex, Ib */

+                nextop = F8;

+                GETEX(1);

+                GETGX;

+                tmp8u = F8;

+                for (int i=0; i<2; ++i) {

+                    if(tmp8u&(1<<i))

+                        GX->q[i] = EX->q[i];

+                }

+                break;

             case 0x0E:  /* PBLENDW Gx, Ex, Ib */

                 nextop = F8;

                 GETEX(1);