diff options
author | 2010-08-19 14:19:38 +0000 | |
---|---|---|
committer | 2010-08-19 14:19:38 +0000 | |
commit | 44c78c4939eedf00ee351f300761ed60a2da0ea3 (patch) | |
tree | d94827e7133e1ef7f95ca1d93d8cf8eb59468c80 /src/emu/cpu/pic16c62x/pic16c62x.c | |
parent | a86a4c3684fbd6cd04f7da3b536c578955bfc749 (diff) |
Remove most of the temporary inline helpers.
The only one that touched a lot of drivers is this one:
S: memory_set_decrypted_region( *)\(( *)([^,]+)( *),( *)
R: \3->set_decrypted_region\1\(\2
Diffstat (limited to 'src/emu/cpu/pic16c62x/pic16c62x.c')
-rw-r--r-- | src/emu/cpu/pic16c62x/pic16c62x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/pic16c62x/pic16c62x.c b/src/emu/cpu/pic16c62x/pic16c62x.c index 2333a2e4c90..e7aec63c244 100644 --- a/src/emu/cpu/pic16c62x/pic16c62x.c +++ b/src/emu/cpu/pic16c62x/pic16c62x.c @@ -126,7 +126,7 @@ struct _pic16c62x_instruction INLINE void update_internalram_ptr(pic16c62x_state *cpustate) { - cpustate->internalram = (UINT8 *)memory_get_write_ptr(cpustate->data, 0x00); + cpustate->internalram = (UINT8 *)cpustate->data->get_write_ptr(0x00); } #define PIC16C62x_RDOP(A) (memory_decrypted_read_word(cpustate->program, (A)<<1)) |