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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/video/scn2674.h b/src/devices/video/scn2674.h
index 9b1932aab8d..4e93b1bae82 100644
--- a/src/devices/video/scn2674.h
+++ b/src/devices/video/scn2674.h
@@ -41,14 +41,14 @@ public:
DECLARE_WRITE8_MEMBER( buffer_w ) { m_buffer = data; }
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- virtual space_config_vector memory_space_config() const override;
- void scn2674_vram(address_map &map);
protected:
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
+ virtual space_config_vector memory_space_config() const override;
+
private:
bitmap_rgb32 m_bitmap;
devcb_write_line m_intr_cb;
@@ -119,6 +119,8 @@ private:
void write_command(uint8_t data);
void recompute_parameters();
+ void scn2674_vram(address_map &map);
+
draw_character_delegate m_display_cb;
emu_timer *m_scanline_timer;
const address_space_config m_space_config;