summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-11-06 01:07:27 +1100
committer Vas Crabb <vas@vastheman.com>2019-11-06 01:07:27 +1100
commit0a5fed2ecec3c9e3cac23b769896548c28cc6091 (patch)
tree266d02926e802594dc13b6a968cda10b93e3e7a6 /src/mame/audio
parent06f99c21a08fe76ae833a5587d19c33ed0a035f1 (diff)
loose ends: (nw)
* mm5740 X pins are numbered starting from 1, also fix typo in pinout comment (Y10, not Y0) * make more members protected/private as appropriate * got rid of one more video start override in a clean way
Diffstat (limited to 'src/mame/audio')
-rw-r--r--src/mame/audio/seibu.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/audio/seibu.h b/src/mame/audio/seibu.h
index e45ff65a1ea..496ec89a84e 100644
--- a/src/mame/audio/seibu.h
+++ b/src/mame/audio/seibu.h
@@ -35,6 +35,8 @@
class seibu_sound_common {
public:
virtual ~seibu_sound_common() = default;
+
+protected:
void seibu_sound_map(address_map &map);
};
@@ -42,7 +44,7 @@ class seibu_sound_device : public device_t
{
public:
seibu_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- ~seibu_sound_device() {}
+ ~seibu_sound_device() { }
// configuration
template <typename T> void set_rom_tag(T &&tag) { m_sound_rom.set_tag(std::forward<T>(tag)); }
@@ -131,7 +133,7 @@ class seibu_adpcm_device : public device_t,
{
public:
seibu_adpcm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- ~seibu_adpcm_device() {}
+ ~seibu_adpcm_device() { }
void decrypt();
void adr_w(offs_t offset, u8 data);