summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/buffer.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/machine/buffer.h
parent0125087cbe3ce69cbd99fb4f65c8ece580e0dd8b (diff)
Added ATTR_COLD to common lifecycle methods for many files in src/devices. (#12822)
Diffstat (limited to 'src/devices/machine/buffer.h')
-rw-r--r--src/devices/machine/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/buffer.h b/src/devices/machine/buffer.h
index e3f3c3bdd83..d1ce83327c1 100644
--- a/src/devices/machine/buffer.h
+++ b/src/devices/machine/buffer.h
@@ -20,7 +20,7 @@ public:
void write_bit7(int state) { if (state) m_input_data |= 0x80; else m_input_data &= ~0x80; }
protected:
- virtual void device_start() override;
+ virtual void device_start() override ATTR_COLD;
uint8_t m_input_data;
};