mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
h8500dasm.cpp: Fix silly mistake in disassembly of illegal instructions
This commit is contained in:
parent
7ccaa1c49e
commit
e76f2c9a30
@ -426,7 +426,7 @@ offs_t h8500_disassembler::dasm_immop(std::ostream &stream, offs_t pc, bool w, c
|
||||
return (w ? 4 : 3) | SUPPORTED;
|
||||
}
|
||||
else
|
||||
return dasm_illegal(stream, w ? 0x04 : 0x0c);
|
||||
return dasm_illegal(stream, w ? 0x0c : 0x04);
|
||||
}
|
||||
|
||||
offs_t h8500_disassembler::disassemble(std::ostream &stream, offs_t pc, const h8500_disassembler::data_buffer &opcodes, const h8500_disassembler::data_buffer ¶ms)
|
||||
|
Loading…
Reference in New Issue
Block a user