no idea why these used CPU_DISASSEMBLE but didn't use CPU_DISASSEMBLE_NAME for calling the function. (nw)

This commit is contained in:
smf- 2013-03-06 14:34:53 +00:00
parent 62ba32cb4f
commit 28235d443b
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
}