diff options
author | 2012-12-27 20:17:48 +0000 | |
---|---|---|
committer | 2012-12-27 20:17:48 +0000 | |
commit | 1e3368929743ae440cb70fdf26ebc6f1739185e4 (patch) | |
tree | 33c54995f83fba7f5f5a7c5195d8d81989e8bb96 /src/emu/cpu/h6280 | |
parent | 185ee93dd334baffa1dc9f95a559fea5b35690db (diff) |
h6280: fix disassembler hookup [R. Belmont]
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r-- | src/emu/cpu/h6280/h6280.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c index 6a8d6e59ef9..ccf26c33c87 100644 --- a/src/emu/cpu/h6280/h6280.c +++ b/src/emu/cpu/h6280/h6280.c @@ -360,7 +360,7 @@ UINT32 h6280_device::disasm_max_opcode_bytes() const offs_t h6280_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) { extern CPU_DISASSEMBLE( h6280 ); - return disassemble(buffer, pc, oprom, opram, 0); + return cpu_disassemble_h6280(NULL, buffer, pc, oprom, opram, options); } |