mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fix 68000 dasm (nw)
This commit is contained in:
parent
2e49925b57
commit
e1785764ed
@ -3454,7 +3454,7 @@ bool m68k_disassembler::compare_nof_true_bits(const opcode_struct *aptr, const o
|
||||
b = ((b & 0xF0F0) >> 4) + (b & 0x0F0F);
|
||||
b = ((b & 0xFF00) >> 8) + (b & 0x00FF);
|
||||
|
||||
return b > a; /* reversed to get greatest to least sorting */
|
||||
return b < a; /* reversed to get greatest to least sorting */
|
||||
}
|
||||
|
||||
/* build the opcode handler jump table */
|
||||
|
Loading…
Reference in New Issue
Block a user