trunk/src/emu/cpu/hmcs40/hmcs40.h
| r244770 | r244771 | |
| 26 | 26 | // construction/destruction |
| 27 | 27 | hmcs40_cpu_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, int stack_levels, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data, const char *shortname, const char *source) |
| 28 | 28 | : cpu_device(mconfig, type, name, tag, owner, clock, shortname, source) |
| 29 | | , m_program_config("program", ENDIANNESS_BIG, 16, prgwidth, 0, program) |
| 30 | | , m_data_config("data", ENDIANNESS_BIG, 8, datawidth, 0, data) |
| 29 | , m_program_config("program", ENDIANNESS_LITTLE, 16, prgwidth, 0, program) |
| 30 | , m_data_config("data", ENDIANNESS_LITTLE, 8, datawidth, 0, data) |
| 31 | 31 | , m_prgwidth(prgwidth-1) |
| 32 | 32 | , m_datawidth(datawidth) |
| 33 | 33 | , m_stack_levels(stack_levels) |
trunk/src/tools/unidasm.c
| r244770 | r244771 | |
| 244 | 244 | { "hd6301", _8bit, 0, CPU_DISASSEMBLE_NAME(hd6301) }, |
| 245 | 245 | { "hd6309", _8bit, 0, CPU_DISASSEMBLE_NAME(hd6309) }, |
| 246 | 246 | { "hd63701", _8bit, 0, CPU_DISASSEMBLE_NAME(hd63701) }, |
| 247 | | { "hmcs40", _16be, 0, CPU_DISASSEMBLE_NAME(hmcs40) }, |
| 247 | { "hmcs40", _16le, 0, CPU_DISASSEMBLE_NAME(hmcs40) }, |
| 248 | 248 | { "hyperstone", _16be, 0, CPU_DISASSEMBLE_NAME(hyperstone_generic) }, |
| 249 | 249 | { "i4004", _8bit, 0, CPU_DISASSEMBLE_NAME(i4004) }, |
| 250 | 250 | { "i8008", _8bit, 0, CPU_DISASSEMBLE_NAME(i8008) }, |