From de177759f77d003f95a52f550305a306c7242400 Mon Sep 17 00:00:00 2001 From: SarahW Date: Thu, 11 Apr 2019 20:58:07 +0100 Subject: [PATCH] Fix EA calculations on 3DNow PREFETCH instruction --- src/x86_ops_3dnow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x86_ops_3dnow.h b/src/x86_ops_3dnow.h index 304943f..9f852d5 100644 --- a/src/x86_ops_3dnow.h +++ b/src/x86_ops_3dnow.h @@ -10,7 +10,7 @@ static int opPREFETCH_a16(uint32_t fetchdat) } static int opPREFETCH_a32(uint32_t fetchdat) { - fetch_ea_16(fetchdat); + fetch_ea_32(fetchdat); ILLEGAL_ON(cpu_mod == 3); CLOCK_CYCLES(1);