summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/amiga/arsystems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/amiga/arsystems.cpp')
-rw-r--r--src/mame/amiga/arsystems.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/amiga/arsystems.cpp b/src/mame/amiga/arsystems.cpp
index 4f8de48a7e1..50561191b31 100644
--- a/src/mame/amiga/arsystems.cpp
+++ b/src/mame/amiga/arsystems.cpp
@@ -94,7 +94,7 @@ public:
DECLARE_INPUT_CHANGED_MEMBER(coin_changed_callback);
protected:
- virtual void machine_reset() override;
+ virtual void machine_reset() override ATTR_COLD;
void arcadia_multibios_change_game(uint16_t data);
void arcadia_cia_0_portb_w(uint8_t data);
@@ -102,10 +102,10 @@ protected:
private:
inline void generic_decode(const char *tag, int bit7, int bit6, int bit5, int bit4, int bit3, int bit2, int bit1, int bit0);
- void a500_mem(address_map &map);
- void arcadia_map(address_map &map);
- void argh_map(address_map &map);
- void overlay_512kb_map(address_map &map);
+ void a500_mem(address_map &map) ATTR_COLD;
+ void arcadia_map(address_map &map) ATTR_COLD;
+ void argh_map(address_map &map) ATTR_COLD;
+ void overlay_512kb_map(address_map &map) ATTR_COLD;
optional_memory_region m_bios_region, m_rom_board;
mg class='inline' src='//www.gravatar.com/avatar/e2f0f360b06d021ae2f94d315bcf7538?s=13&d=retro' /> Olivier Galibert2020-04-021-4/+2 * 68000: Rework interrupt handling [O. Galibert] Olivier Galibert2019-04-051-1/+1 * -arcadia, binbug, cd2650, cvs, dm7000, dolphunk, galaxia, hp48, instruct, kon... mooglyguy2018-12-151-17/+19 * -nvram: Removed MCFG, nw mooglyguy2018-08-241-1/+1 * Allow per-device internal layouts and remove some more MCFG_ macros. Vas Crabb2018-07-161-1/+1 * private: use (W,X,Y,Z,#) (#3721) David Haywood2018-07-011-3/+6 * as if millions of this pointers suddenly cried out in terror, and were sudden... Vas Crabb2018-06-081-4/+4 * Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS ... MooglyGuy2018-05-131-12/+12 * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-10/+10 * (nw) output finder for vd,zac_1,zac_2,zac_proto Robbbert2018-04-041-12/+10 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-31/+37 * (nw) screw you macros and the horse you rode in on Vas Crabb2018-02-141-2/+3 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-6/+12 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-2/+4 * Remove timer_device from emu.h and move it out of src/emu (nw) AJR2017-10-011-0/+1