mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
Fixing the RSP disassembler, no whatsnew.
This commit is contained in:
parent
3a3b1e4519
commit
0534f875b9
@ -349,6 +349,6 @@ offs_t rsp_dasm_one(char *buffer, offs_t pc, UINT32 op)
|
|||||||
CPU_DISASSEMBLE( rsp )
|
CPU_DISASSEMBLE( rsp )
|
||||||
{
|
{
|
||||||
UINT32 op = *(UINT32 *)opram;
|
UINT32 op = *(UINT32 *)opram;
|
||||||
op = BIG_ENDIANIZE_INT32(op);
|
op = LITTLE_ENDIANIZE_INT32(op);
|
||||||
return rsp_dasm_one(buffer, pc, op);
|
return rsp_dasm_one(buffer, pc, op);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user