summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos6581.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:05:57 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:06:31 -0500
commitb909c6e1a3ab844f2fb51f97e58f589dadf01643 (patch)
treeb268d713218235611ae1aca0e0dd2ee1aa8ca58c /src/devices/sound/mos6581.h
parent75805ea2f09cf5aa4e0572a94da8599b62c3045a (diff)
mos6566, mos6581, bus/plus4: Eliminate address_space argument from handlers (nw)
Diffstat (limited to 'src/devices/sound/mos6581.h')
-rw-r--r--src/devices/sound/mos6581.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mos6581.h b/src/devices/sound/mos6581.h
index 95af2cbd687..68d319a45df 100644
--- a/src/devices/sound/mos6581.h
+++ b/src/devices/sound/mos6581.h
@@ -53,8 +53,8 @@ public:
auto potx() { return m_read_potx.bind(); }
auto poty() { return m_read_poty.bind(); }
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
protected:
mos6581_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t variant);