summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/skeleton/mod8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/skeleton/mod8.cpp')
-rw-r--r--src/mame/skeleton/mod8.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/skeleton/mod8.cpp b/src/mame/skeleton/mod8.cpp
index 004033feb57..cc9079e459b 100644
--- a/src/mame/skeleton/mod8.cpp
+++ b/src/mame/skeleton/mod8.cpp
@@ -79,13 +79,13 @@ private:
void kbd_put(u8 data);
uint8_t tty_r();
IRQ_CALLBACK_MEMBER(mod8_irq_callback);
- void io_map(address_map &map);
- void mem_map(address_map &map);
+ void io_map(address_map &map) ATTR_COLD;
+ void mem_map(address_map &map) ATTR_COLD;
uint16_t m_tty_data_out = 0U;
uint8_t m_tty_data_in = 0U;
int m_tty_cnt = 0;
- void machine_start() override;
+ void machine_start() override ATTR_COLD;
required_device<teleprinter_device> m_teleprinter;
required_device<cpu_device> m_maincpu;
};