32x: drc: more bugfixing

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@865 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2010-01-23 20:54:28 +00:00
parent a2b8c5a545
commit 04092e329b
5 changed files with 139 additions and 76 deletions

View file

@ -535,7 +535,8 @@ static UINT32 op1100(char *buffer, UINT32 pc, UINT16 opcode)
sprintf(buffer, "MOV.L @($%04X,GBR),R0", (opcode & 0xff) * 4);
break;
case 7:
sprintf(buffer, "MOVA @($%04X,PC),R0", (opcode & 0xff) * 4);
sprintf(buffer, "MOVA @($%04X,PC),R0 ; @$%08x", (opcode & 0xff) * 4,
((pc + 2) & ~3) + (opcode & 0xff) * 4);
break;
case 8:
sprintf(buffer, "TST #$%02X,R0", opcode & 0xff);