summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos6581.h
diff options
context:
space:
mode:
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);