trunk/src/tools/unidasm.c
| r21628 | r21629 | |
| 40 | 40 | #include "emu.h" |
| 41 | 41 | #include <ctype.h> |
| 42 | 42 | |
| 43 | class m6809_base_device; |
| 44 | |
| 43 | 45 | enum display_type |
| 44 | 46 | { |
| 45 | 47 | _8bit, |
| r21628 | r21629 | |
| 111 | 113 | CPU_DISASSEMBLE( g65816_generic ); |
| 112 | 114 | CPU_DISASSEMBLE( h6280 ); |
| 113 | 115 | CPU_DISASSEMBLE( h8 ); |
| 114 | | CPU_DISASSEMBLE( hd6309 ); |
| 116 | CPU_DISASSEMBLE( hd6309 ) { extern offs_t hd6309_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options); return hd6309_disassemble(buffer, pc, oprom, opram, 0); } |
| 115 | 117 | CPU_DISASSEMBLE( i4004 ); |
| 116 | 118 | CPU_DISASSEMBLE( i8008 ); |
| 117 | 119 | CPU_DISASSEMBLE( i8085 ); |
| r21628 | r21629 | |
| 121 | 123 | CPU_DISASSEMBLE( i960 ); |
| 122 | 124 | CPU_DISASSEMBLE( jaguargpu ); |
| 123 | 125 | CPU_DISASSEMBLE( jaguardsp ); |
| 124 | | CPU_DISASSEMBLE( konami ); |
| 126 | CPU_DISASSEMBLE( konami ) { extern offs_t konami_cpu_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options); return konami_cpu_disassemble(buffer, pc, oprom, opram, 0); } |
| 125 | 127 | CPU_DISASSEMBLE( lh5801 ); |
| 126 | 128 | CPU_DISASSEMBLE( lr35902 ); |
| 127 | 129 | CPU_DISASSEMBLE( m37710_generic ); |
| r21628 | r21629 | |
| 138 | 140 | CPU_DISASSEMBLE( m68030 ); |
| 139 | 141 | CPU_DISASSEMBLE( m68040 ); |
| 140 | 142 | CPU_DISASSEMBLE( m6805 ); |
| 141 | | CPU_DISASSEMBLE( m6809 ); |
| 143 | CPU_DISASSEMBLE( m6809 ) { extern offs_t m6809_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, int options, m6809_base_device *m6809); return m6809_disassemble(buffer, pc, oprom, opram, 0, NULL); } |
| 142 | 144 | CPU_DISASSEMBLE( mb86233 ); |
| 143 | 145 | CPU_DISASSEMBLE( mb88 ); |
| 144 | 146 | CPU_DISASSEMBLE( mcs48 ); |