trunk/src/emu/cpu/m6809/hd6309.c
| r21626 | r21627 | |
| 206 | 206 | |
| 207 | 207 | offs_t hd6309_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 208 | 208 | { |
| 209 | | extern offs_t hd6309_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options); |
| 210 | | return hd6309_disassemble(buffer, pc, oprom, opram, options); |
| 209 | extern CPU_DISASSEMBLE( hd6309 ); |
| 210 | return CPU_DISASSEMBLE_NAME(hd6309)(NULL, buffer, pc, oprom, opram, options); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | |
trunk/src/emu/cpu/m6809/konami.c
| r21626 | r21627 | |
| 110 | 110 | |
| 111 | 111 | offs_t konami_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 112 | 112 | { |
| 113 | | extern offs_t konami_cpu_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options); |
| 114 | | return konami_cpu_disassemble(buffer, pc, oprom, opram, options); |
| 113 | extern CPU_DISASSEMBLE( konami ); |
| 114 | return CPU_DISASSEMBLE_NAME(konami)(NULL, buffer, pc, oprom, opram, options); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | |
trunk/src/emu/cpu/m6809/6309dasm.c
| r21626 | r21627 | |
| 604 | 604 | |
| 605 | 605 | static const char *const tfm_s[] = { "%s+,%s+", "%s-,%s-", "%s+,%s", "%s,%s+" }; |
| 606 | 606 | |
| 607 | | offs_t hd6309_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 607 | CPU_DISASSEMBLE( hd6309 ) |
| 608 | 608 | { |
| 609 | 609 | UINT8 opcode, mode, pb, pbm, reg; |
| 610 | 610 | const UINT8 *operandarray; |