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/pdp1 | |
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/pdp1')
-rw-r--r-- | src/emu/cpu/pdp1/pdp1.c | 2 | ||||
-rw-r--r-- | src/emu/cpu/pdp1/tx0.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/pdp1/pdp1.c b/src/emu/cpu/pdp1/pdp1.c index 7200d42456a..e3c7a4548db 100644 --- a/src/emu/cpu/pdp1/pdp1.c +++ b/src/emu/cpu/pdp1/pdp1.c @@ -418,7 +418,7 @@ struct _pdp1_state int type_20_sbs; legacy_cpu_device *device; - const address_space *program; + address_space *program; int icount; }; diff --git a/src/emu/cpu/pdp1/tx0.c b/src/emu/cpu/pdp1/tx0.c index e880abceba3..13e4784a6d8 100644 --- a/src/emu/cpu/pdp1/tx0.c +++ b/src/emu/cpu/pdp1/tx0.c @@ -65,7 +65,7 @@ struct _tx0_state int icount; legacy_cpu_device *device; - const address_space *program; + address_space *program; }; INLINE tx0_state *get_safe_token(running_device *device) |