summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/samcoupe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/samcoupe.h')
-rw-r--r--src/mame/includes/samcoupe.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/samcoupe.h b/src/mame/includes/samcoupe.h
index ef72ffd10bf..201754c993d 100644
--- a/src/mame/includes/samcoupe.h
+++ b/src/mame/includes/samcoupe.h
@@ -87,7 +87,7 @@ public:
sam_bank_write_ptr[3] = nullptr;
}
- virtual void video_start();
+ virtual void video_start() override;
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -129,8 +129,8 @@ public:
DECLARE_READ8_MEMBER(samcoupe_keyboard_r);
DECLARE_WRITE8_MEMBER(samcoupe_border_w);
DECLARE_READ8_MEMBER(samcoupe_attributes_r);
- virtual void machine_start();
- virtual void machine_reset();
+ virtual void machine_start() override;
+ virtual void machine_reset() override;
DECLARE_PALETTE_INIT(samcoupe);
INTERRUPT_GEN_MEMBER(samcoupe_frame_interrupt);
TIMER_CALLBACK_MEMBER(irq_off);
@@ -197,7 +197,7 @@ public:
int m_lpt1_busy;
int m_lpt2_busy;
protected:
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
};
#endif /* SAMCOUPE_H_ */