summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pipedrm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipedrm.cpp')
-rw-r--r--src/mame/drivers/pipedrm.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mame/drivers/pipedrm.cpp b/src/mame/drivers/pipedrm.cpp
index 7d7e6d51d59..fa6c553e5ed 100644
--- a/src/mame/drivers/pipedrm.cpp
+++ b/src/mame/drivers/pipedrm.cpp
@@ -180,17 +180,20 @@ public:
m_soundlatch(*this, "soundlatch")
{ }
+ void pipedrm(machine_config &config);
+ void hatris(machine_config &config);
+
+ void init_pipedrm();
+ void init_hatris();
+
+private:
required_device<generic_latch_8_device> m_soundlatch;
DECLARE_MACHINE_START(pipedrm);
DECLARE_MACHINE_RESET(pipedrm);
- void init_pipedrm();
- void init_hatris();
DECLARE_WRITE8_MEMBER( pipedrm_bankswitch_w );
DECLARE_WRITE8_MEMBER( sound_bankswitch_w );
DECLARE_READ8_MEMBER( pending_command_r );
- void pipedrm(machine_config &config);
- void hatris(machine_config &config);
void hatris_sound_portmap(address_map &map);
void main_map(address_map &map);
void main_portmap(address_map &map);