summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/heathzenith/mdt60.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/heathzenith/mdt60.cpp')
-rw-r--r--src/mame/heathzenith/mdt60.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/heathzenith/mdt60.cpp b/src/mame/heathzenith/mdt60.cpp
index 039ee3f02b0..ea4a45d1558 100644
--- a/src/mame/heathzenith/mdt60.cpp
+++ b/src/mame/heathzenith/mdt60.cpp
@@ -46,8 +46,8 @@ public:
void mdt60(machine_config &mconfig);
protected:
- virtual void machine_start() override;
- virtual void machine_reset() override;
+ virtual void machine_start() override ATTR_COLD;
+ virtual void machine_reset() override ATTR_COLD;
private:
MC6845_UPDATE_ROW(update_row);
@@ -58,7 +58,7 @@ private:
u8 dip0_r(offs_t offset);
void reg_w(u8 data);
- void mem_map(address_map &map);
+ void mem_map(address_map &map) ATTR_COLD;
required_device<cpu_device> m_maincpu;
required_device<z29_keyboard_port_device> m_keyboard;