diff options
Diffstat (limited to 'src/devices/machine/nvram.h')
-rw-r--r-- | src/devices/machine/nvram.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/nvram.h b/src/devices/machine/nvram.h index 58bde56bece..a2c75fa90a0 100644 --- a/src/devices/machine/nvram.h +++ b/src/devices/machine/nvram.h @@ -51,7 +51,7 @@ public: protected: // device-level overrides - virtual void device_start() override; + virtual void device_start() override ATTR_COLD; // device_nvram_interface overrides virtual void nvram_default() override; @@ -62,13 +62,13 @@ protected: void determine_final_base(); // configuration state - optional_memory_region m_region; - default_value m_default_value; - init_delegate m_custom_handler; + optional_memory_region m_region; + default_value m_default_value; + init_delegate m_custom_handler; // runtime state - void * m_base; - size_t m_length; + void * m_base; + size_t m_length; }; DECLARE_DEVICE_TYPE(NVRAM, nvram_device) |