From a9a82e581a2cff17368fc369f1d6517e4845a2e6 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 30 Mar 2022 10:53:51 +0200 Subject: Improved and enhanced test17 (SSE testing) --- src/emu/x64run660f.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index 0f7f252b..5d4463bd 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -367,7 +367,7 @@ int Run660F(x64emu_t *emu, rex_t rex) GETEX(0); GETGX; for (int i=0; i<16; ++i) { - GX->sb[i] = abs(EX->sb[i]); + GX->ub[i] = abs(EX->sb[i]); } break; case 0x1D: /* PABSW Gx, Ex */ @@ -375,7 +375,7 @@ int Run660F(x64emu_t *emu, rex_t rex) GETEX(0); GETGX; for (int i=0; i<8; ++i) { - GX->sw[i] = abs(EX->sw[i]); + GX->uw[i] = abs(EX->sw[i]); } break; case 0x1E: /* PABSD Gx, Ex */ @@ -383,7 +383,7 @@ int Run660F(x64emu_t *emu, rex_t rex) GETEX(0); GETGX; for (int i=0; i<4; ++i) { - GX->sd[i] = abs(EX->sd[i]); + GX->ud[i] = abs(EX->sd[i]); } break; -- cgit 1.4.1