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/wswan/rom.h | |
parent | 866f0b6805511e8863d7dee9bdb4db65d20da443 (diff) |
override for for macros that could not be auto recognized by tools (nw)
Diffstat (limited to 'src/devices/bus/wswan/rom.h')
-rw-r--r-- | src/devices/bus/wswan/rom.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/bus/wswan/rom.h b/src/devices/bus/wswan/rom.h index b4b306c55ac..e3a15550e73 100644 --- a/src/devices/bus/wswan/rom.h +++ b/src/devices/bus/wswan/rom.h @@ -22,11 +22,11 @@ public: virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override; // reading and writing - virtual DECLARE_READ8_MEMBER(read_rom20); - virtual DECLARE_READ8_MEMBER(read_rom30); - virtual DECLARE_READ8_MEMBER(read_rom40); - virtual DECLARE_READ8_MEMBER(read_io); - virtual DECLARE_WRITE8_MEMBER(write_io); + virtual DECLARE_READ8_MEMBER(read_rom20) override; + virtual DECLARE_READ8_MEMBER(read_rom30) override; + virtual DECLARE_READ8_MEMBER(read_rom40) override; + virtual DECLARE_READ8_MEMBER(read_io) override; + virtual DECLARE_WRITE8_MEMBER(write_io) override; protected: UINT8 m_io_regs[0x10]; @@ -61,9 +61,9 @@ public: virtual void device_reset() override; // reading and writing - virtual DECLARE_READ8_MEMBER(read_ram); - virtual DECLARE_WRITE8_MEMBER(write_ram); - virtual DECLARE_WRITE8_MEMBER(write_io); + virtual DECLARE_READ8_MEMBER(read_ram) override; + virtual DECLARE_WRITE8_MEMBER(write_ram) override; + virtual DECLARE_WRITE8_MEMBER(write_io) override; private: UINT32 m_nvram_base; @@ -83,8 +83,8 @@ public: virtual void device_reset() override; // reading and writing - virtual DECLARE_READ8_MEMBER(read_io); - virtual DECLARE_WRITE8_MEMBER(write_io); + virtual DECLARE_READ8_MEMBER(read_io) override; + virtual DECLARE_WRITE8_MEMBER(write_io) override; private: UINT8 m_eeprom_mode; /* eeprom mode */ |