summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/macpds/hyperdrive.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/macpds/hyperdrive.h')
-rw-r--r--src/devices/bus/macpds/hyperdrive.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/macpds/hyperdrive.h b/src/devices/bus/macpds/hyperdrive.h
index 9d8000b1c88..d8bc4bc5883 100644
--- a/src/devices/bus/macpds/hyperdrive.h
+++ b/src/devices/bus/macpds/hyperdrive.h
@@ -39,11 +39,11 @@ protected:
required_device<wd2010_device> m_hdc;
private:
- DECLARE_READ16_MEMBER(hyperdrive_r);
- DECLARE_WRITE16_MEMBER(hyperdrive_w);
+ uint16_t hyperdrive_r(offs_t offset);
+ void hyperdrive_w(offs_t offset, uint16_t data);
- DECLARE_READ8_MEMBER(hdd_r);
- DECLARE_WRITE8_MEMBER(hdd_w);
+ uint8_t hdd_r(offs_t offset);
+ void hdd_w(offs_t offset, uint8_t data);
};