diff options
author | 2019-07-21 16:12:28 -0400 | |
---|---|---|
committer | 2019-07-21 16:13:50 -0400 | |
commit | aa06c050d5e990301bbf08936460711ad5daa08b (patch) | |
tree | 8ca72378955cca94b2e1a2191281ba758891fd5e /src/devices/cpu/h8/h83006.h | |
parent | f53b9b5291c706dc89990b969e00c7a3cad4dfdd (diff) |
h83002, h83003, h83006, h83008, h83048: Add configuration option to restrict address space to 20 bits (nw)
Diffstat (limited to 'src/devices/cpu/h8/h83006.h')
-rw-r--r-- | src/devices/cpu/h8/h83006.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h83006.h b/src/devices/cpu/h8/h83006.h index 83aa48b7ec9..37ff4029476 100644 --- a/src/devices/cpu/h8/h83006.h +++ b/src/devices/cpu/h8/h83006.h @@ -29,6 +29,9 @@ class h83006_device : public h8h_device { public: h83006_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + void set_mode_a20() { mode_a20 = true; } + void set_mode_a24() { mode_a20 = false; } + DECLARE_READ8_MEMBER(syscr_r); DECLARE_WRITE8_MEMBER(syscr_w); |