From 283a4dda20b0dc54c70eaa9bb876a8510b603bb6 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Mon, 5 Jul 2021 10:17:16 +0200 Subject: Small optim on interpreted 0F 10/11 opcodes --- src/emu/x64run0f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 30c89c0b..81167450 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -69,13 +69,13 @@ int Run0F(x64emu_t *emu, rex_t rex) nextop = F8; GETEX(0); GETGX; - memcpy(GX, EX, 16); // unaligned, so carreful + GX->u128 = EX->u128; break; case 0x11: /* MOVUPS Ex,Gx */ nextop = F8; GETEX(0); GETGX; - memcpy(EX, GX, 16); // unaligned, so carreful + EX->u128 = GX->u128; break; case 0x12: nextop = F8; -- cgit 1.4.1