summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2018-11-01 13:18:41 -0400
committer GitHub <noreply@github.com>2018-11-01 13:18:41 -0400
commit3a718cd69c5fe3576e48da8c4d950e9741bb066c (patch)
treeec62939d971a977ad9e3a1acb6523517d389a886
parent630bec618c375beb5da49ae41aa8e2615a11ea11 (diff)
parent49bdf0fcb9fd1a969437192472b1ffb4bc1efa32 (diff)
Merge pull request #4210 from hp9k/m68kdasm_fix
m68kdasm: fix ptest instruction (nw)
-rw-r--r--src/devices/cpu/m68000/m68kdasm.cpp2
1 files changed, 1 insertions, 1 deletions
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
{