summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/catseye.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/catseye.h')
-rw-r--r--src/devices/video/catseye.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/catseye.h b/src/devices/video/catseye.h
index 0ba53675ac6..8c66eb257c7 100644
--- a/src/devices/video/catseye.h
+++ b/src/devices/video/catseye.h
@@ -12,10 +12,10 @@ public:
catseye_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- 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, u16 data, u16 mem_mask = ~0);
+ uint16_t ctrl_r(address_space &space, offs_t offset, uint16_t mem_mask = ~0);
+ void ctrl_w(offs_t offset, u16 data, u16 mem_mask = ~0);
DECLARE_WRITE_LINE_MEMBER(vblank_w);
void set_fb_width(int width) { m_fb_width = width; }