From 28235d443b17e44a77c5a6602c780b44b70261a0 Mon Sep 17 00:00:00 2001 From: smf- Date: Wed, 6 Mar 2013 14:34:53 +0000 Subject: [PATCH] no idea why these used CPU_DISASSEMBLE but didn't use CPU_DISASSEMBLE_NAME for calling the function. (nw) --- src/emu/cpu/h6280/h6280.c | 2 +- src/emu/cpu/m6805/m6805.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c index 27d720a50e3..6cbeb19208f 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 cpu_disassemble_h6280(NULL, buffer, pc, oprom, opram, options); + return CPU_DISASSEMBLE_NAME(h6280)(this, buffer, pc, oprom, opram, options); } diff --git a/src/emu/cpu/m6805/m6805.c b/src/emu/cpu/m6805/m6805.c index d234affae48..82561750904 100644 --- a/src/emu/cpu/m6805/m6805.c +++ b/src/emu/cpu/m6805/m6805.c @@ -538,7 +538,7 @@ UINT32 m6805_base_device::disasm_max_opcode_bytes() const offs_t m6805_base_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) { extern CPU_DISASSEMBLE( m6805 ); - return cpu_disassemble_m6805(NULL, buffer, pc, oprom, opram, options); + return CPU_DISASSEMBLE_NAME(m6805)(this, buffer, pc, oprom, opram, options); }