diff options
author | 2024-09-25 12:35:29 -0400 | |
---|---|---|
committer | 2024-09-26 02:35:29 +1000 | |
commit | bdc96c8ea5c910cf316cdc65e7e20a747029b51f (patch) | |
tree | a28df3e642d41cbf8a72f3fa68e55365b6c1fbce /src/mame/venture/spcforce.cpp | |
parent | 9ca21b386bf7e0801b32e096dcde1cc8609f7b0c (diff) |
Added ATTR_COLD to common lifecycle methods for many files in src/mame. (#12789)
Diffstat (limited to 'src/mame/venture/spcforce.cpp')
-rw-r--r-- | src/mame/venture/spcforce.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/venture/spcforce.cpp b/src/mame/venture/spcforce.cpp index 101a5a479e1..50beb531a51 100644 --- a/src/mame/venture/spcforce.cpp +++ b/src/mame/venture/spcforce.cpp @@ -72,7 +72,7 @@ public: void spcforce(machine_config &config); protected: - virtual void machine_start() override; + virtual void machine_start() override ATTR_COLD; private: void sn76496_latch_w(uint8_t data); @@ -88,8 +88,8 @@ private: uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - void main_map(address_map &map); - void sound_map(address_map &map); + void main_map(address_map &map) ATTR_COLD; + void sound_map(address_map &map) ATTR_COLD; required_device<cpu_device> m_maincpu; required_device<ls259_device> m_mainlatch; |