summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/amstrad/pda600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/amstrad/pda600.cpp')
-rw-r--r--src/mame/amstrad/pda600.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/amstrad/pda600.cpp b/src/mame/amstrad/pda600.cpp
index 6c90f850796..f2ea7cbe0fa 100644
--- a/src/mame/amstrad/pda600.cpp
+++ b/src/mame/amstrad/pda600.cpp
@@ -135,8 +135,8 @@ private:
required_ioport m_battery;
required_shared_ptr<u8> m_video_ram;
- virtual void machine_start() override;
- virtual void machine_reset() override;
+ virtual void machine_start() override ATTR_COLD;
+ virtual void machine_reset() override ATTR_COLD;
u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void io_w(offs_t offset, u8 data);
u8 io_r(offs_t offset);
@@ -149,8 +149,8 @@ private:
DECLARE_DEVICE_IMAGE_LOAD_MEMBER(card_load);
DECLARE_DEVICE_IMAGE_UNLOAD_MEMBER(card_unload);
- void pda600_io(address_map &map);
- void pda600_mem(address_map &map);
+ void pda600_io(address_map &map) ATTR_COLD;
+ void pda600_mem(address_map &map) ATTR_COLD;
emu_timer * m_csio_clk_timer;
emu_timer * m_serl_clk_timer;
@@ -264,7 +264,7 @@ void pda600_state::pda600_io(address_map &map)
/* Input ports */
static INPUT_PORTS_START( pda600 )
PORT_START("POWER")
- PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_POWER_OFF) PORT_WRITE_LINE_MEMBER(pda600_state, power_off_w)
+ PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_POWER_OFF) PORT_WRITE_LINE_MEMBER(FUNC(pda600_state::power_off_w))
PORT_START("BATTERY")
PORT_CONFNAME(0x0f, 0x0f, "Main battery status")