summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/bt459.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/bt459.h')
-rw-r--r--src/devices/video/bt459.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/video/bt459.h b/src/devices/video/bt459.h
index 99b0f5ca97b..062122a2228 100644
--- a/src/devices/video/bt459.h
+++ b/src/devices/video/bt459.h
@@ -181,6 +181,15 @@ public:
void map(address_map &map);
+ DECLARE_READ8_MEMBER(address_lo_r);
+ DECLARE_WRITE8_MEMBER(address_lo_w);
+ DECLARE_READ8_MEMBER(address_hi_r);
+ DECLARE_WRITE8_MEMBER(address_hi_w);
+ DECLARE_READ8_MEMBER(register_r);
+ DECLARE_WRITE8_MEMBER(register_w);
+ DECLARE_READ8_MEMBER(palette_r);
+ DECLARE_WRITE8_MEMBER(palette_w);
+
void screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect, u8 *pixel_data);
void set_contrast(const u8 data) { m_contrast = data; }
@@ -204,15 +213,6 @@ private:
return rgb;
}
- DECLARE_READ8_MEMBER(address_lo_r);
- DECLARE_WRITE8_MEMBER(address_lo_w);
- DECLARE_READ8_MEMBER(address_hi_r);
- DECLARE_WRITE8_MEMBER(address_hi_w);
- DECLARE_READ8_MEMBER(register_r);
- DECLARE_WRITE8_MEMBER(register_w);
- DECLARE_READ8_MEMBER(palette_r);
- DECLARE_WRITE8_MEMBER(palette_w);
-
// device state in memory map order
u16 m_address;
int m_address_rgb;