diff options
author | 2020-06-18 20:13:33 +0200 | |
---|---|---|
committer | 2020-06-18 20:13:33 +0200 | |
commit | 57cf17dc52bcd4571a68576dd6597ddf9fae41a8 (patch) | |
tree | 9fef8bce07d80de37886a6dc44c340da05517388 /src/devices/cpu/h8/h83006.h | |
parent | e96ed3b0ebd5920e8aff2914a6ff28b435210717 (diff) |
finally retired the READ8/16/32/64 and WRITE8/16/32/64 macros (nw)
Diffstat (limited to 'src/devices/cpu/h8/h83006.h')
-rw-r--r-- | src/devices/cpu/h8/h83006.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h83006.h b/src/devices/cpu/h8/h83006.h index 37ff4029476..083b91ea664 100644 --- a/src/devices/cpu/h8/h83006.h +++ b/src/devices/cpu/h8/h83006.h @@ -32,8 +32,8 @@ public: void set_mode_a20() { mode_a20 = true; } void set_mode_a24() { mode_a20 = false; } - DECLARE_READ8_MEMBER(syscr_r); - DECLARE_WRITE8_MEMBER(syscr_w); + uint8_t syscr_r(); + void syscr_w(uint8_t data); protected: h83006_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t start); |