summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu')
-rw-r--r--src/emu/cpu/h6280/h6280.c2
-rw-r--r--src/emu/cpu/m6805/m6805.c2
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);
}