diff options
author | 2015-12-05 21:20:22 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:56 +0100 | |
commit | 7ab3a5e0fc0c2e259c4011cdfce9684f2609592a (patch) | |
tree | 4fc55cd2e12f2b99b69bacb1dd0dd7d42bde3711 /src/devices/sound/mos6560.h | |
parent | 1db2b0d6b40ff3635b637f5e854c5fd62a9db169 (diff) |
override part 3 (nw)
Diffstat (limited to 'src/devices/sound/mos6560.h')
-rw-r--r-- | src/devices/sound/mos6560.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/mos6560.h b/src/devices/sound/mos6560.h index 05768815bf0..c5259f72659 100644 --- a/src/devices/sound/mos6560.h +++ b/src/devices/sound/mos6560.h @@ -141,7 +141,7 @@ public: template<class _Object> static devcb_base &set_potx_rd_callback(device_t &device, _Object object) { return downcast<mos6560_device &>(device).m_read_potx.set_callback(object); } template<class _Object> static devcb_base &set_poty_rd_callback(device_t &device, _Object object) { return downcast<mos6560_device &>(device).m_read_poty.set_callback(object); } - virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const; + virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override; DECLARE_READ8_MEMBER( read ); DECLARE_WRITE8_MEMBER( write ); @@ -166,12 +166,12 @@ protected: }; // device-level overrides - virtual void device_start(); - virtual void device_reset(); - virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); + virtual void device_start() override; + virtual void device_reset() override; + virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override; // sound stream update overrides - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples); + virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; inline UINT8 read_videoram(offs_t offset); inline UINT8 read_colorram(offs_t offset); |