summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/cdp1802
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-19 22:26:25 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-19 22:26:25 +0000
commit320097d9fe5eb3f0689b050f99afebe58c1c1c1b (patch)
tree0b1c25b4c0c99be2f1fd348a857fe2e03bd4fb2b /src/emu/cpu/cdp1802
parentf36fc8641eb9e45c79bc3051d06c2887e82a562f (diff)
Renamed CPUINFO_PTR_* to CPUINFO_FCT_* for function get infos.
Changed Z80 over to the new cpu_state_table mechanism.
Diffstat (limited to 'src/emu/cpu/cdp1802')
-rw-r--r--src/emu/cpu/cdp1802/cdp1802.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/cpu/cdp1802/cdp1802.c b/src/emu/cpu/cdp1802/cdp1802.c
index b6723c862e5..0d7522c8356 100644
--- a/src/emu/cpu/cdp1802/cdp1802.c
+++ b/src/emu/cpu/cdp1802/cdp1802.c
@@ -1040,12 +1040,12 @@ CPU_GET_INFO( cdp1802 )
case CPUINFO_INT_REGISTER + CDP1802_PC: info->i = cpustate->r[cpustate->p]; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
- case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(cdp1802); break;
- case CPUINFO_PTR_INIT: info->init = CPU_INIT_NAME(cdp1802); break;
- case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(cdp1802); break;
- case CPUINFO_PTR_EXECUTE: info->execute = CPU_EXECUTE_NAME(cdp1802); break;
- case CPUINFO_PTR_BURN: info->burn = NULL; break;
- case CPUINFO_PTR_DISASSEMBLE: info->disassemble = CPU_DISASSEMBLE_NAME(cdp1802); break;
+ case CPUINFO_FCT_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(cdp1802); break;
+ case CPUINFO_FCT_INIT: info->init = CPU_INIT_NAME(cdp1802); break;
+ case CPUINFO_FCT_RESET: info->reset = CPU_RESET_NAME(cdp1802); break;
+ case CPUINFO_FCT_EXECUTE: info->execute = CPU_EXECUTE_NAME(cdp1802); break;
+ case CPUINFO_FCT_BURN: info->burn = NULL; break;
+ case CPUINFO_FCT_DISASSEMBLE: info->disassemble = CPU_DISASSEMBLE_NAME(cdp1802); break;
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &cpustate->icount; break;
/* --- the following bits of info are returned as NULL-terminated strings --- */