summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/p1_sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/p1_sound.h')
-rw-r--r--src/devices/bus/isa/p1_sound.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/isa/p1_sound.h b/src/devices/bus/isa/p1_sound.h
index e0d105300ba..e4fee35d2f3 100644
--- a/src/devices/bus/isa/p1_sound.h
+++ b/src/devices/bus/isa/p1_sound.h
@@ -33,15 +33,15 @@ public:
// construction/destruction
p1_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(d14_r);
- DECLARE_READ8_MEMBER(d16_r);
- DECLARE_READ8_MEMBER(d17_r);
- DECLARE_WRITE8_MEMBER(d14_w);
- DECLARE_WRITE8_MEMBER(d16_w);
- DECLARE_WRITE8_MEMBER(d17_w);
-
- DECLARE_READ8_MEMBER(adc_r);
- DECLARE_WRITE8_MEMBER(dac_w);
+ uint8_t d14_r(offs_t offset);
+ uint8_t d16_r(offs_t offset);
+ uint8_t d17_r(offs_t offset);
+ void d14_w(offs_t offset, uint8_t data);
+ void d16_w(offs_t offset, uint8_t data);
+ void d17_w(offs_t offset, uint8_t data);
+
+ uint8_t adc_r(offs_t offset);
+ void dac_w(offs_t offset, uint8_t data);
protected:
// device-level overrides