MMX 64-bit stores now count cycles.
This commit is contained in:
parent
7ed3813dc4
commit
d4247023a9
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue