(From Samuele Zannoli)

The attached patch is some more progress in the sh4 core, expecially in the fpu.
Now there should be all the minimum needed to run the naomi bios ...
This commit is contained in:
Aaron Giles 2007-12-31 02:00:41 +00:00
parent 625c8308b9
commit 3f6e8e1abf
2 changed files with 602 additions and 111 deletions

File diff suppressed because it is too large Load Diff

View File

@ -543,7 +543,7 @@ static UINT32 op1000(char *buffer, UINT32 pc, UINT16 opcode)
sprintf(buffer, "MOV.B @($%02X,%s),R0", (opcode & 15), regname[Rm]);
break;
case 5:
sprintf(buffer, "MOV.W @($%02X,%s),R0", (opcode & 15), regname[Rm]);
sprintf(buffer, "MOV.W @($%02X,%s),R0", (opcode & 15) * 2, regname[Rm]);
break;
case 8:
sprintf(buffer, "CMP/EQ #$%02X,R0", (opcode & 0xff));