diff options
author | 2024-09-26 13:07:03 -0400 | |
---|---|---|
committer | 2024-09-27 03:07:03 +1000 | |
commit | 48933ef893c541eb6ff05366b906cfe42c23b4b1 (patch) | |
tree | 3d165d96a15eaee13b6e421e8b345745d0c51833 /src/zexall | |
parent | 0125087cbe3ce69cbd99fb4f65c8ece580e0dd8b (diff) |
Added ATTR_COLD to common lifecycle methods for many files in src/devices. (#12822)
Diffstat (limited to 'src/zexall')
-rw-r--r-- | src/zexall/zexall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zexall/zexall.cpp b/src/zexall/zexall.cpp index 9be82b8c745..2459c96de14 100644 --- a/src/zexall/zexall.cpp +++ b/src/zexall/zexall.cpp @@ -30,7 +30,7 @@ public: void output_req_w(uint8_t data); void output_data_w(uint8_t data); - void z80_mem(address_map &map); + void z80_mem(address_map &map) ATTR_COLD; void zexall(machine_config &config); private: @@ -42,7 +42,7 @@ private: uint8_t m_out_ack; // byte written to 0xFFFC std::string terminate_string; - virtual void machine_reset() override; + virtual void machine_reset() override ATTR_COLD; }; |