about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-04-08 13:24:36 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-04-08 13:24:36 +0200
commitb5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7 (patch)
tree72bc75c8249e9ddd0f9bcfc38c5387b5a8f2952b /src
parent56d0e03991404b77e1d84964ac3d04caf71d12f0 (diff)
downloadbox64-b5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7.tar.gz
box64-b5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7.zip
Fixed 66 0F 38 40 opcode
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run660f.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c
index 654cd684..28d04cd8 100644
--- a/src/emu/x64run660f.c
+++ b/src/emu/x64run660f.c
@@ -638,8 +638,7 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr)
                 GETEX(0);

                 GETGX;

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

-                    if(GX->ud[i]<EX->ud[i])

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

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

                 break;

 

             case 0xDB:  /* AESIMC Gx, Ex */