summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/laserbas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/laserbas.cpp')
-rw-r--r--src/mame/drivers/laserbas.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/laserbas.cpp b/src/mame/drivers/laserbas.cpp
index ae0c543c84f..a40e0af7211 100644
--- a/src/mame/drivers/laserbas.cpp
+++ b/src/mame/drivers/laserbas.cpp
@@ -83,8 +83,11 @@ public:
m_dac4(*this, "dac4"),
m_dac5(*this, "dac5"),
m_dac6(*this, "dac6")
- { }
+ { }
+ void laserbas(machine_config &config);
+
+private:
/* misc */
int m_dac_data;
int m_counter[6];
@@ -126,7 +129,6 @@ public:
required_device<dac_byte_interface> m_dac4;
required_device<dac_byte_interface> m_dac5;
required_device<dac_byte_interface> m_dac6;
- void laserbas(machine_config &config);
void laserbas_io(address_map &map);
void laserbas_memory(address_map &map);
};