summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/mb_vcu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/mb_vcu.h')
-rw-r--r--src/devices/video/mb_vcu.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/devices/video/mb_vcu.h b/src/devices/video/mb_vcu.h
index 2b99c8847f6..86ebcc883bf 100644
--- a/src/devices/video/mb_vcu.h
+++ b/src/devices/video/mb_vcu.h
@@ -35,14 +35,10 @@ public:
DECLARE_READ8_MEMBER( status_r );
DECLARE_WRITE8_MEMBER( vbank_w );
DECLARE_WRITE8_MEMBER( vbank_clear_w );
- DECLARE_READ8_MEMBER( mb_vcu_paletteram_r );
- DECLARE_WRITE8_MEMBER( mb_vcu_paletteram_w );
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void screen_eof(void);
- void mb_vcu_pal_ram(address_map &map);
- void mb_vcu_vram(address_map &map);
protected:
// device-level overrides
virtual void device_validity_check(validity_checker &valid) const override;
@@ -56,6 +52,12 @@ private:
inline uint8_t read_io(offs_t address);
inline void write_io(offs_t address, uint8_t data);
+ DECLARE_READ8_MEMBER( mb_vcu_paletteram_r );
+ DECLARE_WRITE8_MEMBER( mb_vcu_paletteram_w );
+
+ void mb_vcu_pal_ram(address_map &map);
+ void mb_vcu_vram(address_map &map);
+
const address_space_config m_videoram_space_config;
const address_space_config m_paletteram_space_config;
uint8_t m_status;