riidasm: Correct order of parameters for MOVRP and MOVPR (nw)

This commit is contained in:
AJR 2019-06-20 17:25:07 -04:00
parent 81eec8d860
commit 3ba83a143a

View File

@ -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);
}
}
}