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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/mosaic.h b/src/mame/includes/mosaic.h
index 75c90a19f0b..c28bda1a7ca 100644
--- a/src/mame/includes/mosaic.h
+++ b/src/mame/includes/mosaic.h
@@ -17,7 +17,7 @@ public:
/* 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;
@@ -28,20 +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(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(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};