summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/huc6260.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/huc6260.h')
-rw-r--r--src/devices/video/huc6260.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/huc6260.h b/src/devices/video/huc6260.h
index 695f60c9a05..69b74f8394b 100644
--- a/src/devices/video/huc6260.h
+++ b/src/devices/video/huc6260.h
@@ -33,11 +33,11 @@ public:
auto hsync_changed() { return m_hsync_changed_cb.bind(); }
void video_update(bitmap_ind16 &bitmap, const rectangle &cliprect);
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
- READ8_MEMBER(palette_direct_read);
- WRITE8_MEMBER(palette_direct_write);
+ uint8_t palette_direct_read(offs_t offset);
+ void palette_direct_write(offs_t offset, uint8_t data);
protected:
// device-level overrides