diff options
author | 2015-12-06 13:32:00 +0100 | |
---|---|---|
committer | 2015-12-06 13:32:00 +0100 | |
commit | a558fcefef371ca99831ecead6baaa988355e7af (patch) | |
tree | b90b6a3e2c0febbfdb7efba1d4103d5a7c235260 /src/devices/bus/megadrive/svp.h | |
parent | 866f0b6805511e8863d7dee9bdb4db65d20da443 (diff) |
override for for macros that could not be auto recognized by tools (nw)
Diffstat (limited to 'src/devices/bus/megadrive/svp.h')
-rw-r--r-- | src/devices/bus/megadrive/svp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/megadrive/svp.h b/src/devices/bus/megadrive/svp.h index aad90b8f53f..dce7115cf05 100644 --- a/src/devices/bus/megadrive/svp.h +++ b/src/devices/bus/megadrive/svp.h @@ -31,10 +31,10 @@ public: required_ioport m_test_ipt; // reading and writing - virtual DECLARE_READ16_MEMBER(read); - virtual DECLARE_WRITE16_MEMBER(write); - virtual DECLARE_READ16_MEMBER(read_a15); - virtual DECLARE_WRITE16_MEMBER(write_a15); + virtual DECLARE_READ16_MEMBER(read) override; + virtual DECLARE_WRITE16_MEMBER(write) override; + virtual DECLARE_READ16_MEMBER(read_a15) override; + virtual DECLARE_WRITE16_MEMBER(write_a15) override; virtual int read_test() override; |