summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/msm5205.h
diff options
context:
space:
mode:
author holub <andrei.holub@gmail.com>2024-09-26 13:07:03 -0400
committer GitHub <noreply@github.com>2024-09-27 03:07:03 +1000
commit48933ef893c541eb6ff05366b906cfe42c23b4b1 (patch)
tree3d165d96a15eaee13b6e421e8b345745d0c51833 /src/devices/sound/msm5205.h
parent0125087cbe3ce69cbd99fb4f65c8ece580e0dd8b (diff)
Added ATTR_COLD to common lifecycle methods for many files in src/devices. (#12822)
Diffstat (limited to 'src/devices/sound/msm5205.h')
-rw-r--r--src/devices/sound/msm5205.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/msm5205.h b/src/devices/sound/msm5205.h
index 46052aaffcb..d310c8d56fb 100644
--- a/src/devices/sound/msm5205.h
+++ b/src/devices/sound/msm5205.h
@@ -51,8 +51,8 @@ protected:
msm5205_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, u8 dac_bits);
// device-level overrides
- virtual void device_start() override;
- virtual void device_reset() override;
+ virtual void device_start() override ATTR_COLD;
+ virtual void device_reset() override ATTR_COLD;
virtual void device_clock_changed() override;
TIMER_CALLBACK_MEMBER(toggle_vck);