diff options
author | 2020-03-11 20:04:17 +0100 | |
---|---|---|
committer | 2020-03-11 20:04:17 +0100 | |
commit | 59337f9e503618cf287a1888da376010d6611682 (patch) | |
tree | 092fe65b1aae8aec16cd9bbe4cb80ecdcf25c670 /src/devices/sound/awacs.h | |
parent | 29f838fe84ff1de3ff852c3f8421fbe2b6b0067d (diff) |
src/devices: simplified some handlers (nw)
Diffstat (limited to 'src/devices/sound/awacs.h')
-rw-r--r-- | src/devices/sound/awacs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/awacs.h b/src/devices/sound/awacs.h index 68f6f428550..4ef4a800a24 100644 --- a/src/devices/sound/awacs.h +++ b/src/devices/sound/awacs.h @@ -25,8 +25,8 @@ public: // construction/destruction awacs_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - DECLARE_READ8_MEMBER(read); - DECLARE_WRITE8_MEMBER(write); + uint8_t read(offs_t offset); + void write(offs_t offset, uint8_t data); void set_dma_base(address_space &space, int offset0, int offset1); |