summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/hdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/hdc.h')
-rw-r--r--src/devices/bus/isa/hdc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/hdc.h b/src/devices/bus/isa/hdc.h
index 7d60d40b7a5..9df114bdcf6 100644
--- a/src/devices/bus/isa/hdc.h
+++ b/src/devices/bus/isa/hdc.h
@@ -142,8 +142,8 @@ public:
// construction/destruction
isa8_hdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(pc_hdc_r);
- DECLARE_WRITE8_MEMBER(pc_hdc_w);
+ uint8_t pc_hdc_r(offs_t offset);
+ void pc_hdc_w(offs_t offset, uint8_t data);
required_device<xt_hdc_device> m_hdc;
protected: