trunk/src/emu/cpu/tms9900/tms9980a.c
| r21678 | r21679 | |
| 239 | 239 | |
| 240 | 240 | offs_t tms9980a_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 241 | 241 | { |
| 242 | | return Dasm9900(buffer, pc, TMS9980_ID, oprom, opram); |
| 242 | extern CPU_DISASSEMBLE( tms9980 ); |
| 243 | return CPU_DISASSEMBLE_NAME(tms9980)(this, buffer, pc, oprom, opram, options); |
| 243 | 244 | } |
| 244 | 245 | |
| 245 | 246 | const device_type TMS9980A = &device_creator<tms9980a_device>; |
trunk/src/emu/cpu/tms9900/tms9995.c
| r21678 | r21679 | |
| 3310 | 3310 | |
| 3311 | 3311 | offs_t tms9995_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 3312 | 3312 | { |
| 3313 | | return Dasm9900(buffer, pc, TMS9995_ID, oprom, opram); |
| 3313 | extern CPU_DISASSEMBLE( tms9995 ); |
| 3314 | return CPU_DISASSEMBLE_NAME(tms9995)(this, buffer, pc, oprom, opram, options); |
| 3314 | 3315 | } |
| 3315 | 3316 | |
| 3316 | 3317 | |
trunk/src/emu/cpu/tms9900/tms9900.c
| r21678 | r21679 | |
| 2583 | 2583 | |
| 2584 | 2584 | offs_t tms99xx_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) |
| 2585 | 2585 | { |
| 2586 | | return Dasm9900(buffer, pc, TMS9900_ID, oprom, opram); |
| 2586 | extern CPU_DISASSEMBLE( tms9900 ); |
| 2587 | return CPU_DISASSEMBLE_NAME(tms9900)(this, buffer, pc, oprom, opram, options); |
| 2587 | 2588 | } |
| 2588 | 2589 | |
| 2589 | 2590 | |
trunk/src/emu/cpu/tms9900/9900dasm.c
| r21678 | r21679 | |
| 794 | 794 | |
| 795 | 795 | return (PC - pc) | DASMFLAG_SUPPORTED | dasmflags; |
| 796 | 796 | } |
| 797 | |
| 798 | CPU_DISASSEMBLE( tms9900 ) |
| 799 | { |
| 800 | return Dasm9900(buffer, pc, TMS9900_ID, oprom, opram); |
| 801 | } |
| 802 | |
| 803 | CPU_DISASSEMBLE( tms9980 ) |
| 804 | { |
| 805 | return Dasm9900(buffer, pc, TMS9980_ID, oprom, opram); |
| 806 | } |
| 807 | |
| 808 | CPU_DISASSEMBLE( tms9995 ) |
| 809 | { |
| 810 | return Dasm9900(buffer, pc, TMS9995_ID, oprom, opram); |
| 811 | } |
trunk/src/tools/unidasm.c
| r21678 | r21679 | |
| 201 | 201 | CPU_DISASSEMBLE( tms34020 ); |
| 202 | 202 | CPU_DISASSEMBLE( tms57002 ); |
| 203 | 203 | CPU_DISASSEMBLE( tms7000 ); |
| 204 | CPU_DISASSEMBLE( tms9900 ); |
| 205 | CPU_DISASSEMBLE( tms9980 ); |
| 206 | CPU_DISASSEMBLE( tms9995 ); |
| 204 | 207 | CPU_DISASSEMBLE( tx0_64kw ); |
| 205 | 208 | CPU_DISASSEMBLE( tx0_8kw ); |
| 206 | 209 | CPU_DISASSEMBLE( unsp ); |
| r21678 | r21679 | |
| 340 | 343 | { "tms34020", _8bit, 3, CPU_DISASSEMBLE_NAME(tms34020) }, |
| 341 | 344 | { "tms57002", _32le, -2, CPU_DISASSEMBLE_NAME(tms57002) }, |
| 342 | 345 | { "tms7000", _8bit, 0, CPU_DISASSEMBLE_NAME(tms7000) }, |
| 346 | { "tms9900", _16be, 0, CPU_DISASSEMBLE_NAME(tms9900) }, |
| 347 | { "tms9980", _8bit, 0, CPU_DISASSEMBLE_NAME(tms9980) }, |
| 348 | { "tms9995", _8bit, 0, CPU_DISASSEMBLE_NAME(tms9995) }, |
| 343 | 349 | { "tx0_64kw", _32be, -2, CPU_DISASSEMBLE_NAME(tx0_64kw) }, |
| 344 | 350 | { "tx0_8kw", _32be, -2, CPU_DISASSEMBLE_NAME(tx0_8kw) }, |
| 345 | 351 | { "unsp", _16be, 0, CPU_DISASSEMBLE_NAME(unsp) }, |