Pack decoded ModR/M data into a single word - minor recompiler speedup.

This commit is contained in:
SarahW 2016-08-14 16:29:54 +01:00
commit 535604b760
34 changed files with 1263 additions and 1270 deletions

View file

@ -4,9 +4,9 @@
#define USATW(val) (((val) < 0) ? 0 : (((val) > 65535) ? 65535 : (val)))
#define MMX_GETSRC() \
if (mod == 3) \
if (cpu_mod == 3) \
{ \
src = MM[rm]; \
src = MM[cpu_rm]; \
CLOCK_CYCLES(1); \
} \
else \