trunk/src/emu/cpu/esrip/esrip.c
| r21641 | r21642 | |
| 401 | 401 | offs_t esrip_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 402 | 402 | { |
| 403 | 403 | extern CPU_DISASSEMBLE( esrip ); |
| 404 | | return disassemble(buffer, pc, oprom, opram, 0); |
| 404 | return CPU_DISASSEMBLE_NAME(esrip)(this, buffer, pc, oprom, opram, options); |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | 407 | |
trunk/src/emu/cpu/ssem/ssem.c
| r21641 | r21642 | |
| 189 | 189 | offs_t ssem_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 190 | 190 | { |
| 191 | 191 | extern CPU_DISASSEMBLE( ssem ); |
| 192 | | return disassemble(buffer, pc, oprom, opram, 0); |
| 192 | return CPU_DISASSEMBLE_NAME(ssem)(this, buffer, pc, oprom, opram, options); |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | |