From d7a5491d840b18cec642c07f0431deabf5920dad Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 25 Apr 2020 16:45:20 -0400 Subject: [PATCH] we32100d: Fix mask (nw) --- src/devices/cpu/we32000/we32100d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/we32000/we32100d.cpp b/src/devices/cpu/we32000/we32100d.cpp index b473ff2cc73..c91a760239f 100644 --- a/src/devices/cpu/we32000/we32100d.cpp +++ b/src/devices/cpu/we32000/we32100d.cpp @@ -360,7 +360,7 @@ offs_t we32100_disassembler::disassemble(std::ostream &stream, offs_t pc, const || op == 0x00 || op == 0x26 || (op & 0xfa) == 0x0a - // TODO (always false) || (op & 0xfd) == 0x12 + || (op & 0xfb) == 0x12 || (op & 0xfe) == 0x1a || (op & 0xfc) == 0x98 || (op & 0xde) == 0xc2