summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pipeline.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipeline.c')
-rw-r--r--src/mame/drivers/pipeline.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/pipeline.c b/src/mame/drivers/pipeline.c
index 5d82197d16f..daeb32050e8 100644
--- a/src/mame/drivers/pipeline.c
+++ b/src/mame/drivers/pipeline.c
@@ -98,7 +98,7 @@ public:
UINT8 m_toMCU;
UINT8 m_fromMCU;
UINT8 m_ddrA;
-
+
DECLARE_WRITE8_MEMBER(vram2_w);
DECLARE_WRITE8_MEMBER(vram1_w);
DECLARE_WRITE8_MEMBER(mcu_portA_w);
@@ -107,16 +107,16 @@ public:
DECLARE_WRITE8_MEMBER(vidctrl_w);
DECLARE_READ8_MEMBER(protection_r);
DECLARE_WRITE8_MEMBER(protection_w);
-
+
TILE_GET_INFO_MEMBER(get_tile_info);
TILE_GET_INFO_MEMBER(get_tile_info2);
-
+
virtual void machine_start();
virtual void video_start();
DECLARE_PALETTE_INIT(pipeline);
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
-
+
TIMER_CALLBACK_MEMBER(protection_deferred_w);
};
@@ -153,7 +153,7 @@ void pipeline_state::video_start()
m_tilemap1 = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(pipeline_state::get_tile_info),this),TILEMAP_SCAN_ROWS,8,8,64,32 );
m_tilemap2 = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(pipeline_state::get_tile_info2),this),TILEMAP_SCAN_ROWS,8,8,64,32 );
m_tilemap2->set_transparent_pen(0);
-
+
save_item(NAME(m_vidctrl));
save_pointer(NAME(m_palram), 0x1000);
}