summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/mw8080bw.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mame/includes/mw8080bw.h b/src/mame/includes/mw8080bw.h
index d9a17ebd9d4..cd25098428b 100644
--- a/src/mame/includes/mw8080bw.h
+++ b/src/mame/includes/mw8080bw.h
@@ -379,19 +379,14 @@ class zzzap_state : public mw8080bw_state
{
public:
zzzap_state(machine_config const &mconfig, device_type type, char const *tag) :
- mw8080bw_state(mconfig, type, tag),
- m_soundboard(*this, "soundboard")
+ mw8080bw_state(mconfig, type, tag)
{
}
void zzzap(machine_config &config);
private:
- void io_w(offs_t offset, u8 data);
-
void io_map(address_map &map);
-
- required_device<zzzap_audio_device> m_soundboard;
};