diff options
Diffstat (limited to 'src/emu/sound')
| -rw-r--r-- | src/emu/sound/2151intf.c | 6 | ||||
| -rw-r--r-- | src/emu/sound/2151intf.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/sound/2151intf.c b/src/emu/sound/2151intf.c index 8a1de920a1d..4a08ef25f52 100644 --- a/src/emu/sound/2151intf.c +++ b/src/emu/sound/2151intf.c @@ -1,8 +1,8 @@ /*************************************************************************** - 2151intf.c + 2151intf.c - Support interface YM2151(OPM) + Support interface YM2151(OPM) ***************************************************************************/ @@ -75,7 +75,7 @@ void ym2151_device::device_start() { m_irqhandler.resolve_safe(); m_portwritehandler.resolve_safe(); - + // stream setup int rate = clock() / 64; m_stream = stream_alloc(0, 2, rate); diff --git a/src/emu/sound/2151intf.h b/src/emu/sound/2151intf.h index 160520aebf5..7c7f20570fe 100644 --- a/src/emu/sound/2151intf.h +++ b/src/emu/sound/2151intf.h @@ -34,7 +34,7 @@ // ======================> ym2151_device -class ym2151_device : public device_t, +class ym2151_device : public device_t, public device_sound_interface { public: @@ -48,7 +48,7 @@ public: // read/write DECLARE_READ8_MEMBER( read ); DECLARE_WRITE8_MEMBER( write ); - + DECLARE_READ8_MEMBER( status_r ); DECLARE_WRITE8_MEMBER( register_w ); DECLARE_WRITE8_MEMBER( data_w ); |
