summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/k052109.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/k052109.h')
-rw-r--r--src/mame/video/k052109.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mame/video/k052109.h b/src/mame/video/k052109.h
index 6b31307419e..cbb325e16c8 100644
--- a/src/mame/video/k052109.h
+++ b/src/mame/video/k052109.h
@@ -42,12 +42,10 @@ public:
chip so it must not be set by the callback.
*/
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
- DECLARE_READ16_MEMBER( word_r );
- DECLARE_WRITE16_MEMBER( word_w );
- DECLARE_READ16_MEMBER( lsb_r );
- DECLARE_WRITE16_MEMBER( lsb_w );
+ u8 read(offs_t offset);
+ void write(offs_t offset, u8 data);
+ u16 word_r(offs_t offset);
+ void word_w(offs_t offset, u16 data, u16 mem_mask = ~0);
void set_rmrd_line(int state);
int get_rmrd_line();