Fixing the RSP disassembler, no whatsnew.

This commit is contained in:
Ryan Holtz 2009-12-17 02:18:15 +00:00
parent 3a3b1e4519
commit 0534f875b9

View File

@ -349,6 +349,6 @@ offs_t rsp_dasm_one(char *buffer, offs_t pc, UINT32 op)
CPU_DISASSEMBLE( rsp )
{
UINT32 op = *(UINT32 *)opram;
op = BIG_ENDIANIZE_INT32(op);
op = LITTLE_ENDIANIZE_INT32(op);
return rsp_dasm_one(buffer, pc, op);
}