summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/powerpc/ppc.c
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/powerpc/ppc.c
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/powerpc/ppc.c')
-rw-r--r--src/emu/cpu/powerpc/ppc.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/emu/cpu/powerpc/ppc.c b/src/emu/cpu/powerpc/ppc.c
index 88add8a52d4..f8c8808e580 100644
--- a/src/emu/cpu/powerpc/ppc.c
+++ b/src/emu/cpu/powerpc/ppc.c
@@ -1713,21 +1713,6 @@ static CPU_EXIT( ppc604 )
-static CPU_GET_CONTEXT( ppc )
-{
- /* copy the context */
- if (dst)
- *(PPC_REGS *)dst = ppc;
-}
-
-
-static CPU_SET_CONTEXT( ppc )
-{
- /* copy the context */
- if (src)
- ppc = *(PPC_REGS *)src;
-}
-
/**************************************************************************
* Generic set_info
**************************************************************************/
@@ -1891,8 +1876,6 @@ static CPU_GET_INFO( ppc )
/* --- the following bits of info are returned as pointers to data or functions --- */
- case CPUINFO_PTR_GET_CONTEXT: info->getcontext = CPU_GET_CONTEXT_NAME(ppc); break;
- case CPUINFO_PTR_SET_CONTEXT: info->setcontext = CPU_SET_CONTEXT_NAME(ppc); break;
case CPUINFO_PTR_BURN: info->burn = NULL; break;
case CPUINFO_PTR_DISASSEMBLE: info->disassemble = CPU_DISASSEMBLE_NAME(ppc); break;
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &ppc_icount; break;