MMX 64-bit MOV instructions now handle faults correctly.
This commit is contained in:
parent
05d9cc34a8
commit
133c9d389a
1 changed files with 2 additions and 2 deletions
|
|
@ -136,7 +136,7 @@ static int opMOVQ_mm_q_a16(uint32_t fetchdat)
|
|||
else
|
||||
{
|
||||
CHECK_WRITE(ea_seg, eaaddr, eaaddr + 7);
|
||||
writememq(easeg, eaaddr, MM[reg].l[0]);
|
||||
writememq(easeg, eaaddr, MM[reg].l[0]); if (abrt) return 1;
|
||||
CLOCK_CYCLES(2);
|
||||
}
|
||||
return 0;
|
||||
|
|
@ -154,7 +154,7 @@ static int opMOVQ_mm_q_a32(uint32_t fetchdat)
|
|||
else
|
||||
{
|
||||
CHECK_WRITE(ea_seg, eaaddr, eaaddr + 7);
|
||||
writememq(easeg, eaaddr, MM[reg].q);
|
||||
writememq(easeg, eaaddr, MM[reg].q); if (abrt) return 1;
|
||||
CLOCK_CYCLES(2);
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue