mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
riidasm: Correct order of parameters for MOVRP and MOVPR (nw)
This commit is contained in:
parent
81eec8d860
commit
3ba83a143a
@ -79,16 +79,16 @@ offs_t riscii_disassembler::disassemble(std::ostream &stream, offs_t pc, const r
|
||||
if (BIT(opcode, 13))
|
||||
{
|
||||
util::stream_format(stream, "%-8s", "MOVPR");
|
||||
format_register(stream, preg);
|
||||
stream << ",";
|
||||
format_register(stream, opcode & 0x00ff);
|
||||
stream << ",";
|
||||
format_register(stream, preg);
|
||||
}
|
||||
else
|
||||
{
|
||||
util::stream_format(stream, "%-8s", "MOVRP");
|
||||
format_register(stream, opcode & 0x00ff);
|
||||
stream << ",";
|
||||
format_register(stream, preg);
|
||||
stream << ",";
|
||||
format_register(stream, opcode & 0x00ff);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user