summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/scn2674.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/scn2674.h')
-rw-r--r--src/devices/video/scn2674.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/video/scn2674.h b/src/devices/video/scn2674.h
index 4a4ed04b366..3090f740f8d 100644
--- a/src/devices/video/scn2674.h
+++ b/src/devices/video/scn2674.h
@@ -40,12 +40,12 @@ public:
m_display_cb = callback;
}
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
- DECLARE_READ8_MEMBER( buffer_r ) { return m_char_buffer; }
- DECLARE_WRITE8_MEMBER( buffer_w ) { m_char_buffer = data; }
- DECLARE_READ8_MEMBER( attr_buffer_r ) { return m_attr_buffer; }
- DECLARE_WRITE8_MEMBER( attr_buffer_w ) { m_attr_buffer = data; }
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
+ uint8_t buffer_r() { return m_char_buffer; }
+ void buffer_w(offs_t offset, uint8_t data) { m_char_buffer = data; }
+ uint8_t attr_buffer_r() { return m_attr_buffer; }
+ void attr_buffer_w(offs_t offset, uint8_t data) { m_attr_buffer = data; }
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);