summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipeline.cpp')
-rw-r--r--src/mame/drivers/pipeline.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/pipeline.cpp b/src/mame/drivers/pipeline.cpp
index 5879f28940a..d20651108d8 100644
--- a/src/mame/drivers/pipeline.cpp
+++ b/src/mame/drivers/pipeline.cpp
@@ -105,10 +105,10 @@ protected:
private:
DECLARE_WRITE8_MEMBER(vram2_w);
DECLARE_WRITE8_MEMBER(vram1_w);
- DECLARE_WRITE8_MEMBER(mcu_porta_w);
- DECLARE_WRITE8_MEMBER(vidctrl_w);
- DECLARE_READ8_MEMBER(protection_r);
- DECLARE_WRITE8_MEMBER(protection_w);
+ void mcu_porta_w(uint8_t data);
+ void vidctrl_w(uint8_t data);
+ uint8_t protection_r();
+ void protection_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_tile_info);
TILE_GET_INFO_MEMBER(get_tile_info2);
@@ -177,7 +177,7 @@ u32 pipeline_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, c
}
-WRITE8_MEMBER(pipeline_state::vidctrl_w)
+void pipeline_state::vidctrl_w(uint8_t data)
{
m_vidctrl = data;
}
@@ -206,7 +206,7 @@ WRITE8_MEMBER(pipeline_state::vram1_w)
m_vram1[offset] = data;
}
-READ8_MEMBER(pipeline_state::protection_r)
+uint8_t pipeline_state::protection_r()
{
return m_from_mcu;
}
@@ -216,7 +216,7 @@ TIMER_CALLBACK_MEMBER(pipeline_state::protection_deferred_w)
m_mcu->pa_w(param);
}
-WRITE8_MEMBER(pipeline_state::protection_w)
+void pipeline_state::protection_w(uint8_t data)
{
machine().scheduler().synchronize(timer_expired_delegate(FUNC(pipeline_state::protection_deferred_w),this), data);
machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(100));
@@ -248,7 +248,7 @@ void pipeline_state::sound_port(address_map &map)
map(0x06, 0x07).noprw();
}
-WRITE8_MEMBER(pipeline_state::mcu_porta_w)
+void pipeline_state::mcu_porta_w(uint8_t data)
{
m_from_mcu = data;
}