summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/buffer.h
diff options
context:
space:
mode:
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;
};