summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/skeleton/consola_emt.cpp
diff options
context:
space:
mode:
author holub <andrei.holub@gmail.com>2024-09-25 12:35:29 -0400
committer GitHub <noreply@github.com>2024-09-26 02:35:29 +1000
commitbdc96c8ea5c910cf316cdc65e7e20a747029b51f (patch)
treea28df3e642d41cbf8a72f3fa68e55365b6c1fbce /src/mame/skeleton/consola_emt.cpp
parent9ca21b386bf7e0801b32e096dcde1cc8609f7b0c (diff)
Added ATTR_COLD to common lifecycle methods for many files in src/mame. (#12789)
Diffstat (limited to 'src/mame/skeleton/consola_emt.cpp')
-rw-r--r--src/mame/skeleton/consola_emt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/skeleton/consola_emt.cpp b/src/mame/skeleton/consola_emt.cpp
index 7622cd382ff..dc494be4942 100644
--- a/src/mame/skeleton/consola_emt.cpp
+++ b/src/mame/skeleton/consola_emt.cpp
@@ -51,15 +51,15 @@ public:
void consoemt(machine_config &config);
protected:
- virtual void machine_start() override;
+ virtual void machine_start() override ATTR_COLD;
private:
required_device<i80188_cpu_device> m_maincpu;
required_device<mcs51_cpu_device> m_mcu;
required_device<hd44780_device> m_lcdc;
- void mem_map(address_map &map);
- void io_map(address_map &map);
+ void mem_map(address_map &map) ATTR_COLD;
+ void io_map(address_map &map) ATTR_COLD;
void consoemt_palette(palette_device &palette) const;
HD44780_PIXEL_UPDATE(lcd_pixel_update);