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/h83002 | |
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/h83002')
-rw-r--r-- | src/emu/cpu/h83002/h8priv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/h83002/h8priv.h b/src/emu/cpu/h83002/h8priv.h index 381d2838633..9003ae8485a 100644 --- a/src/emu/cpu/h83002/h8priv.h +++ b/src/emu/cpu/h83002/h8priv.h @@ -28,8 +28,8 @@ struct _h83xx_state device_irq_callback irq_cb; legacy_cpu_device *device; - const address_space *program; - const address_space *io; + address_space *program; + address_space *io; // onboard peripherals stuff UINT8 per_regs[256]; |