diff options
author | 2010-06-08 17:35:49 +0000 | |
---|---|---|
committer | 2010-06-08 17:35:49 +0000 | |
commit | 5e04468569256d7b9cc1b6069f9c46c90e2455be (patch) | |
tree | 6e00da715aa56ac59d107f6c3f7b8058362da5b0 /src/emu/cpu/esrip | |
parent | d1e9200589119fa135ffd5801dd018ead4865c23 (diff) |
Changed CPU callbacks to use cpu_device, eliminating a bunch of casting.
Diffstat (limited to 'src/emu/cpu/esrip')
-rw-r--r-- | src/emu/cpu/esrip/esrip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/esrip/esrip.c b/src/emu/cpu/esrip/esrip.c index b3c78476098..fc207028c80 100644 --- a/src/emu/cpu/esrip/esrip.c +++ b/src/emu/cpu/esrip/esrip.c @@ -109,7 +109,7 @@ typedef struct UINT16 *ipt_ram; UINT8 *lbrm; - running_device *device; + cpu_device *device; const address_space *program; int icount; @@ -264,7 +264,7 @@ static CPU_INIT( esrip ) cpustate->ipt_ram = auto_alloc_array(device->machine, UINT16, IPT_RAM_SIZE/2); cpustate->device = device; - cpustate->program = device_memory(device)->space(AS_PROGRAM); + cpustate->program = device->space(AS_PROGRAM); /* Create the instruction decode lookup table */ cpustate->optable = auto_alloc_array(device->machine, UINT8, 65536); @@ -1890,7 +1890,7 @@ static CPU_SET_INFO( esrip ) CPU_GET_INFO( esrip ) { - esrip_state *cpustate = (device != NULL && downcast<cpu_device *>(device)->token() != NULL) ? get_safe_token(device) : NULL; + esrip_state *cpustate = (device != NULL && device->token() != NULL) ? get_safe_token(device) : NULL; switch (state) { |