summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mosaic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mosaic.h')
-rw-r--r--src/mame/includes/mosaic.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/src/mame/includes/mosaic.h b/src/mame/includes/mosaic.h
index 5bf7c799970..75c90a19f0b 100644
--- a/src/mame/includes/mosaic.h
+++ b/src/mame/includes/mosaic.h
@@ -9,15 +9,18 @@ class mosaic_state : public driver_device
public:
mosaic_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_fgvideoram(*this, "fgvideoram"),
- m_bgvideoram(*this, "bgvideoram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_fgvideoram(*this, "fgvideoram"),
+ m_bgvideoram(*this, "bgvideoram") { }
+ /* devices */
+ required_device<cpu_device> m_maincpu;
+ required_device<gfxdecode_device> m_gfxdecode;
+
/* memory pointers */
required_shared_ptr<UINT8> m_fgvideoram;
required_shared_ptr<UINT8> m_bgvideoram;
-// UINT8 * m_paletteram; // currently this uses generic palette handling
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -25,18 +28,20 @@ public:
/* misc */
int m_prot_val;
+
DECLARE_WRITE8_MEMBER(protection_w);
DECLARE_READ8_MEMBER(protection_r);
DECLARE_WRITE8_MEMBER(gfire2_protection_w);
DECLARE_READ8_MEMBER(gfire2_protection_r);
- DECLARE_WRITE8_MEMBER(mosaic_fgvideoram_w);
- DECLARE_WRITE8_MEMBER(mosaic_bgvideoram_w);
+ DECLARE_WRITE8_MEMBER(fgvideoram_w);
+ DECLARE_WRITE8_MEMBER(bgvideoram_w);
+
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
+
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
- UINT32 screen_update_mosaic(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- required_device<cpu_device> m_maincpu;
- required_device<gfxdecode_device> m_gfxdecode;
+
+ UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};