diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-08 13:24:36 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-08 13:24:36 +0200 |
| commit | b5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7 (patch) | |
| tree | 72bc75c8249e9ddd0f9bcfc38c5387b5a8f2952b /src | |
| parent | 56d0e03991404b77e1d84964ac3d04caf71d12f0 (diff) | |
| download | box64-b5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7.tar.gz box64-b5096ad65e91dbb02fd3ed0cb7af71fbb34a8dc7.zip | |
Fixed 66 0F 38 40 opcode
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run660f.c | 3 |
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 */ |