From 1e3368929743ae440cb70fdf26ebc6f1739185e4 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Thu, 27 Dec 2012 20:17:48 +0000 Subject: [PATCH] h6280: fix disassembler hookup [R. Belmont] --- src/emu/cpu/h6280/h6280.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }