summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/sb0400.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/sb0400.h')
-rw-r--r--src/devices/sound/sb0400.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/sb0400.h b/src/devices/sound/sb0400.h
index 440e82a0544..772e3ac43ca 100644
--- a/src/devices/sound/sb0400.h
+++ b/src/devices/sound/sb0400.h
@@ -17,11 +17,11 @@ public:
sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
- virtual void device_start() override;
- virtual void device_reset() override;
+ virtual void device_start() override ATTR_COLD;
+ virtual void device_reset() override ATTR_COLD;
private:
- void map(address_map &map);
+ void map(address_map &map) ATTR_COLD;
};
DECLARE_DEVICE_TYPE(SB0400, sb0400_device)