summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-16 16:30:28 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-16 16:30:28 +0000
commit563054754076103db72e8db3da9e31d2dcff585b (patch)
tree93192f6bfa8fb666ec97b201fbb2bc3b9e710c60 /src/emu/debug/debugcmd.c
parent98c40f06dbdd764d8c1ee1409f1103ec6ec68f45 (diff)
More device normalization:
cpu_get_info_* -> device_get_info_* cpu_set_info_* -> device_set_info_* cpu_reset -> device_reset Removed the cputype_get_* macros as they are not necessary. Removed cpuintrf_init() which is no longer necessary.
Diffstat (limited to 'src/emu/debug/debugcmd.c')
-rw-r--r--src/emu/debug/debugcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c
index b96b52d152f..c9f605c6428 100644
--- a/src/emu/debug/debugcmd.c
+++ b/src/emu/debug/debugcmd.c
@@ -248,7 +248,7 @@ void debug_command_init(running_machine *machine)
for (cpu = machine->cpu[0]; cpu != NULL; cpu = cpu->typenext)
{
cpu_debug_init_func debug_init;
- debug_init = (cpu_debug_init_func)cpu_get_info_fct(cpu, CPUINFO_PTR_DEBUG_INIT);
+ debug_init = (cpu_debug_init_func)device_get_info_fct(cpu, CPUINFO_PTR_DEBUG_INIT);
if (debug_init != NULL)
(*debug_init)(cpu);
}