upd78k1d: Bad masking, oops (nw)

This commit is contained in:
AJR 2020-02-11 16:43:05 -05:00
parent e0ff05b1c6
commit 712bd32a8c

View File

@ -551,7 +551,7 @@ offs_t upd78k1_disassembler::disassemble(std::ostream &stream, offs_t pc, const
else
{
u8 n = opcodes.r8(pc + 1);
if ((n & 0xc0) != 0xc1)
if ((n & 0xc1) != 0xc1)
{
util::stream_format(stream, "%-8s", s_shift_ops[op & 0x01][(n & 0xc0) >> 6]);
if (n >= 0xc0)