summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/homebrew/uzebox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/homebrew/uzebox.cpp')
-rw-r--r--src/mame/homebrew/uzebox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/homebrew/uzebox.cpp b/src/mame/homebrew/uzebox.cpp
index bcaf7a8ad53..222c89cb53e 100644
--- a/src/mame/homebrew/uzebox.cpp
+++ b/src/mame/homebrew/uzebox.cpp
@@ -49,8 +49,8 @@ public:
void uzebox(machine_config &config);
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:
required_device<atmega644_device> m_maincpu;
@@ -83,8 +83,8 @@ private:
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load);
- void data_map(address_map &map);
- void prg_map(address_map &map);
+ void data_map(address_map &map) ATTR_COLD;
+ void prg_map(address_map &map) ATTR_COLD;
};