about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run660f.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c
index 3cee8e65..1a753d2b 100644
--- a/src/emu/x64run660f.c
+++ b/src/emu/x64run660f.c
@@ -279,6 +279,16 @@ int Run660F(x64emu_t *emu, rex_t rex)
                 }

                 break;

 

+            case 0x14:  /* BLENDVPS Gx, Ex */

+                nextop = F8;

+                GETEX(0);

+                GETGX;

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

+                    if(emu->xmm[0].ud[i]&0x80000000)

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

+                }

+                break;

+

             case 0x17:      // PTEST GX, EX

                 nextop = F8;

                 GETEX(0);