diff options
author | 2009-07-08 16:20:01 +0000 | |
---|---|---|
committer | 2009-07-08 16:20:01 +0000 | |
commit | 2577a0b22d7b5d43ea7078e5ff9cfd0ae47a3a69 (patch) | |
tree | 382637c4868771c0793965aaa3261d450db8e0a5 /src/emu/cpu/h6280 | |
parent | 7b28233e47541c9c5bf075ff0e4af86f973a1917 (diff) |
Another step. Moved the address-space related get_info constants
to devintrf (including endianness). Removed space array from the
CPU class header. Made the memory system much more device-neutral.
Various other cleanups along the way.
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r-- | src/emu/cpu/h6280/h6280.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c index f8ebc308e9b..0d9237b9d29 100644 --- a/src/emu/cpu/h6280/h6280.c +++ b/src/emu/cpu/h6280/h6280.c @@ -433,7 +433,7 @@ CPU_GET_INFO( h6280 ) case CPUINFO_INT_CONTEXT_SIZE: info->i = sizeof(h6280_Regs); break; case CPUINFO_INT_INPUT_LINES: info->i = 3; break; case CPUINFO_INT_DEFAULT_IRQ_VECTOR: info->i = 0; break; - case CPUINFO_INT_ENDIANNESS: info->i = ENDIANNESS_LITTLE; break; + case DEVINFO_INT_ENDIANNESS: info->i = ENDIANNESS_LITTLE; break; case CPUINFO_INT_CLOCK_MULTIPLIER: info->i = 1; break; case CPUINFO_INT_CLOCK_DIVIDER: info->i = 1; break; case CPUINFO_INT_MIN_INSTRUCTION_BYTES: info->i = 1; break; @@ -494,11 +494,11 @@ CPU_GET_INFO( h6280 ) case CPUINFO_FCT_TRANSLATE: info->translate = CPU_TRANSLATE_NAME(h6280); break; /* --- the following bits of info are returned as NULL-terminated strings --- */ - case CPUINFO_STR_NAME: strcpy(info->s, "HuC6280"); break; - case CPUINFO_STR_CORE_FAMILY: strcpy(info->s, "Hudsonsoft 6280"); break; - case CPUINFO_STR_CORE_VERSION: strcpy(info->s, "1.11"); break; - case CPUINFO_STR_CORE_FILE: strcpy(info->s, __FILE__); break; - case CPUINFO_STR_CORE_CREDITS: strcpy(info->s, "Copyright Bryan McPhail, mish@tendril.co.uk"); break; + case DEVINFO_STR_NAME: strcpy(info->s, "HuC6280"); break; + case DEVINFO_STR_FAMILY: strcpy(info->s, "Hudsonsoft 6280"); break; + case DEVINFO_STR_VERSION: strcpy(info->s, "1.11"); break; + case DEVINFO_STR_SOURCE_FILE: strcpy(info->s, __FILE__); break; + case DEVINFO_STR_CREDITS: strcpy(info->s, "Copyright Bryan McPhail, mish@tendril.co.uk"); break; case CPUINFO_STR_FLAGS: sprintf(info->s, "%c%c%c%c%c%c%c%c", |