diff options
author | 2020-06-17 20:42:54 +0200 | |
---|---|---|
committer | 2020-06-17 20:42:54 +0200 | |
commit | 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch) | |
tree | 92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/video/catseye.h | |
parent | 247d71e1cabe101bd29adee2abc57fb86215a911 (diff) |
devices/machine, sound and video: removed read and write macros (nw)
Diffstat (limited to 'src/devices/video/catseye.h')
-rw-r--r-- | src/devices/video/catseye.h | 8 |
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; } |