diff options
author | 2013-03-06 14:34:53 +0000 | |
---|---|---|
committer | 2013-03-06 14:34:53 +0000 | |
commit | 28235d443b17e44a77c5a6602c780b44b70261a0 (patch) | |
tree | cec9c605e917b7c2d5f76788b105f791ba915827 | |
parent | 62ba32cb4fd12d585bdd8fdcf38ed5a91ff04f53 (diff) |
no idea why these used CPU_DISASSEMBLE but didn't use CPU_DISASSEMBLE_NAME for calling the function. (nw)
-rw-r--r-- | src/emu/cpu/h6280/h6280.c | 2 | ||||
-rw-r--r-- | 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); } |