diff options
Diffstat (limited to 'src/mame/skeleton/evolution_handheld.cpp')
-rw-r--r-- | src/mame/skeleton/evolution_handheld.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/skeleton/evolution_handheld.cpp b/src/mame/skeleton/evolution_handheld.cpp index 32adb8ef4d3..a38b7717609 100644 --- a/src/mame/skeleton/evolution_handheld.cpp +++ b/src/mame/skeleton/evolution_handheld.cpp @@ -24,14 +24,14 @@ public: void evolhh(machine_config &config); private: - virtual void machine_start() override; - virtual void machine_reset() override; + virtual void machine_start() override ATTR_COLD; + virtual void machine_reset() override ATTR_COLD; uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); required_device<evo_cpu_device> m_maincpu; - void evolution_map(address_map &map); + void evolution_map(address_map &map) ATTR_COLD; }; void evolution_handheldgame_state::machine_start() @@ -80,4 +80,4 @@ ROM_END } // anonymous namespace -CONS( 2006, evolhh, 0, 0, evolhh, evolhh, evolution_handheldgame_state, empty_init, "Kidz Delight", "Evolution Max", MACHINE_IS_SKELETON ) // from a pink 'for girls' unit, exists in other colours, software likely the same +CONS( 2006, evolhh, 0, 0, evolhh, evolhh, evolution_handheldgame_state, empty_init, "Kidz Delight", "Evolution Max", MACHINE_NO_SOUND | MACHINE_NOT_WORKING ) // from a pink 'for girls' unit, exists in other colours, software likely the same |