Previous 199869 Revisions Next

r21638 Wednesday 6th March, 2013 at 14:34:53 UTC by smf
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
[src/emu/cpu/m6805]m6805.c

trunk/src/emu/cpu/h6280/h6280.c
r21637r21638
360360offs_t h6280_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
361361{
362362   extern CPU_DISASSEMBLE( h6280 );
363   return cpu_disassemble_h6280(NULL, buffer, pc, oprom, opram, options);
363   return CPU_DISASSEMBLE_NAME(h6280)(this, buffer, pc, oprom, opram, options);
364364}
365365
366366
trunk/src/emu/cpu/m6805/m6805.c
r21637r21638
538538offs_t m6805_base_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
539539{
540540   extern CPU_DISASSEMBLE( m6805 );
541   return cpu_disassemble_m6805(NULL, buffer, pc, oprom, opram, options);
541   return CPU_DISASSEMBLE_NAME(m6805)(this, buffer, pc, oprom, opram, options);
542542}
543543
544544

Previous 199869 Revisions Next


© 1997-2024 The MAME Team