diff options
author | 2015-12-06 15:52:12 +0100 | |
---|---|---|
committer | 2015-12-06 15:52:12 +0100 | |
commit | 0e00c47c7cdea1fc90f467cdbe7290c67eb406cb (patch) | |
tree | 2c9e142eec252b8f692ad41fc5d4589e4be6aab7 /src/mame/includes/coco3.h | |
parent | e6e4a057ecce5866e27b7a59473fafed617e3292 (diff) |
some more override (nw)
Diffstat (limited to 'src/mame/includes/coco3.h')
-rw-r--r-- | src/mame/includes/coco3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/coco3.h b/src/mame/includes/coco3.h index aff1ee9edc2..9cc9a8d9d35 100644 --- a/src/mame/includes/coco3.h +++ b/src/mame/includes/coco3.h @@ -43,9 +43,9 @@ public: required_device<gime_base_device> m_gime; - virtual DECLARE_WRITE8_MEMBER( ff20_write ); - virtual DECLARE_READ8_MEMBER( ff40_read ); - virtual DECLARE_WRITE8_MEMBER( ff40_write ); + virtual DECLARE_WRITE8_MEMBER( ff20_write ) override; + virtual DECLARE_READ8_MEMBER( ff40_read ) override; + virtual DECLARE_WRITE8_MEMBER( ff40_write ) override; DECLARE_WRITE_LINE_MEMBER(gime_firq_w) { recalculate_firq(); } DECLARE_WRITE_LINE_MEMBER(gime_irq_w) { recalculate_irq(); } |