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/handheld/monty.cpp | |
parent | 9ca21b386bf7e0801b32e096dcde1cc8609f7b0c (diff) |
Added ATTR_COLD to common lifecycle methods for many files in src/mame. (#12789)
Diffstat (limited to 'src/mame/handheld/monty.cpp')
-rw-r--r-- | src/mame/handheld/monty.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/handheld/monty.cpp b/src/mame/handheld/monty.cpp index 6e5065aec04..771aa4db37b 100644 --- a/src/mame/handheld/monty.cpp +++ b/src/mame/handheld/monty.cpp @@ -61,7 +61,7 @@ public: void mmonty(machine_config &config); protected: - virtual void machine_start() override; + virtual void machine_start() override ATTR_COLD; private: required_device<z80_device> m_maincpu; @@ -73,9 +73,9 @@ private: int m_lcd_cs = 0; int m_halt = 0; - void monty_mem(address_map &map); - void mmonty_mem(address_map &map); - void monty_io(address_map &map); + void monty_mem(address_map &map) ATTR_COLD; + void mmonty_mem(address_map &map) ATTR_COLD; + void monty_io(address_map &map) ATTR_COLD; template<int N> void lcd_output_w(offs_t offset, u64 data) { m_lcd_data[N << 4 | offset] = data; } // buffer for screen_update u32 screen_update(screen_device& screen, bitmap_rgb32& bitmap, const rectangle& cliprect); |