MMX 64-bit stores now count cycles.

This commit is contained in:
TomW 2015-08-22 14:21:53 +01:00
commit d4247023a9

View file

@ -137,6 +137,7 @@ static int opMOVQ_mm_q_a16(uint32_t fetchdat)
{
CHECK_WRITE(ea_seg, eaaddr, eaaddr + 7);
writememq(easeg, eaaddr, MM[reg].l[0]);
CLOCK_CYCLES(2);
}
return 0;
}
@ -154,6 +155,7 @@ static int opMOVQ_mm_q_a32(uint32_t fetchdat)
{
CHECK_WRITE(ea_seg, eaaddr, eaaddr + 7);
writememq(easeg, eaaddr, MM[reg].q);
CLOCK_CYCLES(2);
}
return 0;
}