summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd44102.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd44102.h')
-rw-r--r--src/devices/video/hd44102.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/video/hd44102.h b/src/devices/video/hd44102.h
index 1688a502441..94c87c8b2b6 100644
--- a/src/devices/video/hd44102.h
+++ b/src/devices/video/hd44102.h
@@ -36,10 +36,10 @@ public:
// inline configuration helpers
void set_offsets(int sx, int sy) { m_sx = sx; m_sy = sy; }
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
- DECLARE_WRITE_LINE_MEMBER( cs2_w );
+ void cs2_w(int state);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -49,11 +49,11 @@ protected:
virtual void device_reset() override;
private:
- DECLARE_READ8_MEMBER( status_r );
- DECLARE_WRITE8_MEMBER( control_w );
+ uint8_t status_r();
+ void control_w(uint8_t data);
- DECLARE_READ8_MEMBER( data_r );
- DECLARE_WRITE8_MEMBER( data_w );
+ uint8_t data_r();
+ void data_w(uint8_t data);
inline void count_up_or_down();