mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
Merge pull request #4210 from hp9k/m68kdasm_fix
m68kdasm: fix ptest instruction (nw)
This commit is contained in:
commit
3a718cd69c
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user