diff options
Diffstat (limited to 'src/mame/gametron/gatron.cpp')
-rw-r--r-- | src/mame/gametron/gatron.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mame/gametron/gatron.cpp b/src/mame/gametron/gatron.cpp index 32b2b2a45b8..4cea174cc3c 100644 --- a/src/mame/gametron/gatron.cpp +++ b/src/mame/gametron/gatron.cpp @@ -355,7 +355,7 @@ public: void gat(machine_config &config); protected: - virtual void video_start() override; + virtual void video_start() override ATTR_COLD; private: required_shared_ptr<uint8_t> m_videoram; @@ -371,13 +371,11 @@ private: uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - void prg_map(address_map &map); - void port_map(address_map &map); + void prg_map(address_map &map) ATTR_COLD; + void port_map(address_map &map) ATTR_COLD; }; -// video - void gatron_state::videoram_w(offs_t offset, uint8_t data) { m_videoram[offset] = data; @@ -412,8 +410,6 @@ uint32_t gatron_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap } -// machine - /**************************** * Read/Write Handlers * ****************************/ |