summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh/sh_sci.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/cpu/sh/sh_sci.h
parent0125087cbe3ce69cbd99fb4f65c8ece580e0dd8b (diff)
Added ATTR_COLD to common lifecycle methods for many files in src/devices. (#12822)
Diffstat (limited to 'src/devices/cpu/sh/sh_sci.h')
-rw-r--r--src/devices/cpu/sh/sh_sci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sh/sh_sci.h b/src/devices/cpu/sh/sh_sci.h
index bb1890c3c8b..3c36a346254 100644
--- a/src/devices/cpu/sh/sh_sci.h
+++ b/src/devices/cpu/sh/sh_sci.h
@@ -120,8 +120,8 @@ protected:
std::string m_last_clock_message;
- void device_start() override;
- void device_reset() override;
+ void device_start() override ATTR_COLD;
+ void device_reset() override ATTR_COLD;
TIMER_CALLBACK_MEMBER(sync_tick);