summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/hd6309
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-11 10:21:52 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-11 10:21:52 +0000
commit04ae2d8bc7371cdff5c655101738e5d8dc221b5c (patch)
treeb03e997bdeaec7fc4f9dedadc12796c6dc43551b /src/emu/cpu/hd6309
parentd87ef8f79b70ca8117b8f365d4836ad4448086f7 (diff)
Removed get context/set context calls from the CPU interface entirely.
Pointer-ified the TMS99xx core (missed that one!)
Diffstat (limited to 'src/emu/cpu/hd6309')
-rw-r--r--src/emu/cpu/hd6309/hd6309.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/cpu/hd6309/hd6309.c b/src/emu/cpu/hd6309/hd6309.c
index 1f4cf600825..7ed8e4ab889 100644
--- a/src/emu/cpu/hd6309/hd6309.c
+++ b/src/emu/cpu/hd6309/hd6309.c
@@ -1299,8 +1299,6 @@ CPU_GET_INFO( hd6309 )
/* --- the following bits of info are returned as pointers to data or functions --- */
case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(hd6309); break;
- case CPUINFO_PTR_GET_CONTEXT: info->getcontext = CPU_GET_CONTEXT_NAME(dummy); break;
- case CPUINFO_PTR_SET_CONTEXT: info->setcontext = CPU_SET_CONTEXT_NAME(dummy); break;
case CPUINFO_PTR_INIT: info->init = CPU_INIT_NAME(hd6309); break;
case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(hd6309); break;
case CPUINFO_PTR_EXIT: info->exit = CPU_EXIT_NAME(hd6309); break;