From 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 17 Jun 2020 20:42:54 +0200 Subject: devices/machine, sound and video: removed read and write macros (nw) --- src/devices/video/topcat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/devices/video/topcat.h') diff --git a/src/devices/video/topcat.h b/src/devices/video/topcat.h index a42761ffb37..b96ef3a3fc0 100644 --- a/src/devices/video/topcat.h +++ b/src/devices/video/topcat.h @@ -15,10 +15,10 @@ public: void set_planemask(int _mask) { m_plane_mask = _mask; } void get_cursor_pos(int &startx, int &starty, int &endx, int &endy); - DECLARE_READ16_MEMBER(vram_r); - DECLARE_WRITE16_MEMBER(vram_w); - DECLARE_READ16_MEMBER(ctrl_r); - DECLARE_WRITE16_MEMBER(ctrl_w); + uint16_t vram_r(offs_t offset, uint16_t mem_mask = ~0); + void vram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0); + uint16_t ctrl_r(address_space &space, offs_t offset, uint16_t mem_mask = ~0); + void ctrl_w(address_space &space, offs_t offset, uint16_t data, uint16_t mem_mask = ~0); WRITE_LINE_MEMBER(vblank_w); void topcat_mem(address_map &map); -- cgit v1.2.3-70-g09d2