diff options
author | 2010-08-19 07:26:14 +0000 | |
---|---|---|
committer | 2010-08-19 07:26:14 +0000 | |
commit | 3598b772bc80b2efb6396c65996462b38eedc593 (patch) | |
tree | e975a31f1f8599b8a947b11675b674fd993accf2 /src/emu/cpu/i86/i86mem.h | |
parent | dd19e512c03c58a100ae5025c9fd7624387667fd (diff) |
Replace "const address_space" with "address_space" throughout the system.
The purpose of making it const before was to discourage direct tampering,
but private/protected does a better job of that now anyhow, and it is
annoying now.
s/const[ \t]+address_space\b/address_space/g;
Is basically what I did.
Diffstat (limited to 'src/emu/cpu/i86/i86mem.h')
-rw-r--r-- | src/emu/cpu/i86/i86mem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/i86/i86mem.h b/src/emu/cpu/i86/i86mem.h index 9bccd2a2342..a49797c56a0 100644 --- a/src/emu/cpu/i86/i86mem.h +++ b/src/emu/cpu/i86/i86mem.h @@ -3,8 +3,8 @@ struct _memory_interface { offs_t fetch_xor; - UINT8 (*rbyte)(const address_space *, offs_t); - UINT16 (*rword)(const address_space *, offs_t); - void (*wbyte)(const address_space *, offs_t, UINT8); - void (*wword)(const address_space *, offs_t, UINT16); + UINT8 (*rbyte)(address_space *, offs_t); + UINT16 (*rword)(address_space *, offs_t); + void (*wbyte)(address_space *, offs_t, UINT8); + void (*wword)(address_space *, offs_t, UINT16); }; |