Minor disassembler output fix for uPD78K1/78K2 SFR-mode RMW instructions

This commit is contained in:
AJR 2020-04-15 16:18:08 -04:00
parent ac7b3b81be
commit c0b195a4d4

View File

@ -66,7 +66,7 @@ offs_t upd78k1_disassembler::dasm_01xx(std::ostream &stream, u8 op2, offs_t pc,
}
else if ((op2 & 0xf8) == 0x68)
{
util::stream_format(stream, "%-8sA,", s_alu_ops[op2 & 0x07]);
util::stream_format(stream, "%-8s", s_alu_ops[op2 & 0x07]);
format_sfr(stream, opcodes.r8(pc + 2));
stream << ",";
format_imm8(stream, opcodes.r8(pc + 3));