mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
no idea why these used CPU_DISASSEMBLE but didn't use CPU_DISASSEMBLE_NAME for calling the function. (nw)
This commit is contained in:
parent
62ba32cb4f
commit
28235d443b
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user