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.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/pipeline.cpp b/src/mame/drivers/pipeline.cpp
index aa422005c29..cf1bd9057b1 100644
--- a/src/mame/drivers/pipeline.cpp
+++ b/src/mame/drivers/pipeline.cpp
@@ -95,6 +95,9 @@ public:
{
}
+ void pipeline(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(vram2_w);
DECLARE_WRITE8_MEMBER(vram1_w);
DECLARE_WRITE8_MEMBER(mcu_portA_w);
@@ -113,11 +116,10 @@ public:
TIMER_CALLBACK_MEMBER(protection_deferred_w);
- void pipeline(machine_config &config);
void cpu0_mem(address_map &map);
void cpu1_mem(address_map &map);
void sound_port(address_map &map);
-protected:
+
required_device<cpu_device> m_maincpu;
required_device<m68705r_device> m_mcu;
required_device<gfxdecode_device> m_gfxdecode;