From 49bdf0fcb9fd1a969437192472b1ffb4bc1efa32 Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Fri, 26 Oct 2018 10:44:21 +0200 Subject: [PATCH] m68kdasm: fix ptest instruction (nw) There's a slight error in the number of bits in the MC6830 Manual. --- src/devices/cpu/m68000/m68kdasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/m68000/m68kdasm.cpp b/src/devices/cpu/m68000/m68kdasm.cpp index a61acff8631..72794ad52b7 100644 --- a/src/devices/cpu/m68000/m68kdasm.cpp +++ b/src/devices/cpu/m68000/m68kdasm.cpp @@ -3005,7 +3005,7 @@ std::string m68k_disassembler::d68851_p000() fc_to_string(modes), str, (modes >> 10) & 7, - (modes >> 4) & 7); + (modes >> 5) & 7); } else {