From 04ae2d8bc7371cdff5c655101738e5d8dc221b5c Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 11 Dec 2008 10:21:52 +0000 Subject: Removed get context/set context calls from the CPU interface entirely. Pointer-ified the TMS99xx core (missed that one!) --- src/emu/cpu/pdp1/pdp1.c | 2 -- src/emu/cpu/pdp1/tx0.c | 4 ---- 2 files changed, 6 deletions(-) (limited to 'src/emu/cpu/pdp1') diff --git a/src/emu/cpu/pdp1/pdp1.c b/src/emu/cpu/pdp1/pdp1.c index 53998338841..18d8f9f5ab9 100644 --- a/src/emu/cpu/pdp1/pdp1.c +++ b/src/emu/cpu/pdp1/pdp1.c @@ -1014,8 +1014,6 @@ CPU_GET_INFO( pdp1 ) /* --- the following bits of info are returned as pointers to data or functions --- */ case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(pdp1); 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(pdp1); break; case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(pdp1); break; case CPUINFO_PTR_EXECUTE: info->execute = CPU_EXECUTE_NAME(pdp1); break; diff --git a/src/emu/cpu/pdp1/tx0.c b/src/emu/cpu/pdp1/tx0.c index 7801a995e35..16447293b23 100644 --- a/src/emu/cpu/pdp1/tx0.c +++ b/src/emu/cpu/pdp1/tx0.c @@ -495,8 +495,6 @@ CPU_GET_INFO( tx0_64kw ) /* --- the following bits of info are returned as pointers to data or functions --- */ case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(tx0); 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(tx0_64kw); break; case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(tx0); break; case CPUINFO_PTR_EXECUTE: info->execute = CPU_EXECUTE_NAME(tx0_64kw); break; @@ -623,8 +621,6 @@ CPU_GET_INFO( tx0_8kw ) /* --- the following bits of info are returned as pointers to data or functions --- */ case CPUINFO_PTR_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(tx0); 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(tx0_8kw); break; case CPUINFO_PTR_RESET: info->reset = CPU_RESET_NAME(tx0); break; case CPUINFO_PTR_EXECUTE: info->execute = CPU_EXECUTE_NAME(tx0_8kw); break; -- cgit v1.2.3-70-g09d2