diff options
author | 2008-12-11 10:21:52 +0000 | |
---|---|---|
committer | 2008-12-11 10:21:52 +0000 | |
commit | 04ae2d8bc7371cdff5c655101738e5d8dc221b5c (patch) | |
tree | b03e997bdeaec7fc4f9dedadc12796c6dc43551b /src/emu/cpu/dsp56k | |
parent | d87ef8f79b70ca8117b8f365d4836ad4448086f7 (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/dsp56k')
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56k.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/cpu/dsp56k/dsp56k.c b/src/emu/cpu/dsp56k/dsp56k.c index 69736159cec..3c028e122f9 100644 --- a/src/emu/cpu/dsp56k/dsp56k.c +++ b/src/emu/cpu/dsp56k/dsp56k.c @@ -351,7 +351,7 @@ static void set_irq_line(int irqline, int state) /*************************************************************************** CONTEXT SWITCHING ***************************************************************************/ - +/* static CPU_GET_CONTEXT( dsp56k ) { if (dst) @@ -366,7 +366,7 @@ static CPU_SET_CONTEXT( dsp56k ) check_irqs(); } - +*/ /*************************************************************************** @@ -671,8 +671,6 @@ CPU_GET_INFO( dsp56k ) // --- the following bits of info are returned as pointers to data or functions --- case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(dsp56k); break; - case CPUINFO_PTR_GET_CONTEXT: info->getcontext = CPU_GET_CONTEXT_NAME(dsp56k); break; - case CPUINFO_PTR_SET_CONTEXT: info->setcontext = CPU_SET_CONTEXT_NAME(dsp56k); break; case CPUINFO_PTR_INIT: info->init = CPU_INIT_NAME(dsp56k); break; case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(dsp56k); break; case CPUINFO_PTR_EXIT: info->exit = CPU_EXIT_NAME(dsp56k); break; |