0.0088 release

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@215 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-08-05 18:21:40 +00:00
parent ee5e024ce6
commit 0e11c502b0
20 changed files with 2084 additions and 655 deletions

View file

@ -207,6 +207,7 @@ int OpNeg(int op)
ot("\n");
}
if (type==1) eawrite_check_addrerr=1;
EaWrite(10, 1,ea,size,0x003f,0,0);
OpEnd(ea);
@ -360,10 +361,12 @@ int OpSet(int op)
ot("\n");
eawrite_check_addrerr=1;
EaCalc (0,0x003f, ea,size,0,0);
EaWrite(0, 1, ea,size,0x003f,0,0);
OpEnd(ea,0,changed_cycles);
opend_op_changes_cycles=changed_cycles;
OpEnd(ea,0);
return 0;
}
@ -614,7 +617,8 @@ int OpAsr(int op)
EaWrite(10, 0, ea,size,0x0007,1);
OpEnd(ea,0,count<0);
opend_op_changes_cycles = (count<0);
OpEnd(ea,0);
return 0;
}