mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
Minor disassembler output fix for uPD78K1/78K2 SFR-mode RMW instructions
This commit is contained in:
parent
ac7b3b81be
commit
c0b195a4d4
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user