trunk/src/emu/cpu/h6280/h6280.c
| r21637 | r21638 | |
| 360 | 360 | offs_t h6280_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 361 | 361 | { |
| 362 | 362 | 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); |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | |
trunk/src/emu/cpu/m6805/m6805.c
| r21637 | r21638 | |
| 538 | 538 | offs_t m6805_base_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 539 | 539 | { |
| 540 | 540 | 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); |
| 542 | 542 | } |
| 543 | 543 | |
| 544 | 544 | |