summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp9845_io/hp9845_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp9845_io/hp9845_io.h')
-rw-r--r--src/devices/bus/hp9845_io/hp9845_io.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/hp9845_io/hp9845_io.h b/src/devices/bus/hp9845_io/hp9845_io.h
index 75a786afde0..bebe12c3408 100644
--- a/src/devices/bus/hp9845_io/hp9845_io.h
+++ b/src/devices/bus/hp9845_io/hp9845_io.h
@@ -61,7 +61,7 @@ public:
// getter for r/w handlers
// return value is SC (negative if no card is attached to slot)
- int get_rw_handlers(read16_delegate& rhandler , write16_delegate& whandler);
+ int get_rw_handlers(read16m_delegate& rhandler , write16m_delegate& whandler);
bool has_dual_sc() const;
@@ -84,8 +84,8 @@ class device_hp9845_io_interface : public device_interface
public:
void set_slot_device(hp9845_io_slot_device &dev);
- virtual DECLARE_READ16_MEMBER(reg_r) = 0;
- virtual DECLARE_WRITE16_MEMBER(reg_w) = 0;
+ virtual uint16_t reg_r(address_space &space, offs_t offset) = 0;
+ virtual void reg_w(address_space &space, offs_t offset, uint16_t data) = 0;
// SC getter
uint8_t get_sc();