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/homebrew/gscpm.cpp | |
parent | 9ca21b386bf7e0801b32e096dcde1cc8609f7b0c (diff) |
Added ATTR_COLD to common lifecycle methods for many files in src/mame. (#12789)
Diffstat (limited to 'src/mame/homebrew/gscpm.cpp')
-rw-r--r-- | src/mame/homebrew/gscpm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/homebrew/gscpm.cpp b/src/mame/homebrew/gscpm.cpp index 9ffa2aa7480..0606bfd1dc6 100644 --- a/src/mame/homebrew/gscpm.cpp +++ b/src/mame/homebrew/gscpm.cpp @@ -39,10 +39,10 @@ public: void gscpm(machine_config &config); protected: - void machine_reset() override; + void machine_reset() override ATTR_COLD; - void gscpm_mem(address_map &map); - void gscpm_io(address_map &map); + void gscpm_mem(address_map &map) ATTR_COLD; + void gscpm_io(address_map &map) ATTR_COLD; uint8_t cflash_r(offs_t offset); void cflash_w(offs_t offset, uint8_t data); |