diff options
Diffstat (limited to 'src/mame/atari/klax.cpp')
-rw-r--r-- | src/mame/atari/klax.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/atari/klax.cpp b/src/mame/atari/klax.cpp index 8b73aea39a0..34be191554b 100644 --- a/src/mame/atari/klax.cpp +++ b/src/mame/atari/klax.cpp @@ -77,7 +77,7 @@ protected: TILE_GET_INFO_MEMBER(get_playfield_tile_info); u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - void klax_map(address_map &map); + void klax_map(address_map &map) ATTR_COLD; }; class klax_bootleg_state : public klax_state @@ -94,13 +94,13 @@ public: void klax5bl(machine_config &config); protected: - virtual void machine_start() override; + virtual void machine_start() override ATTR_COLD; private: void m5205_int1(int state); - void bootleg_sound_map(address_map &map); - void klax5bl_map(address_map &map); + void bootleg_sound_map(address_map &map) ATTR_COLD; + void klax5bl_map(address_map &map) ATTR_COLD; u16 audio_ram_r(offs_t offset); void audio_ram_w(offs_t offset, u16 data); |