diff options
author | 2015-12-05 20:32:27 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:53 +0100 | |
commit | 1c4865d66ff88a6891ebdde4580c3d61ee46ffa2 (patch) | |
tree | 268936fc8389b1a2adb8bfc3fa3006f12a4ccc95 /src/devices/bus/ql/cst_q_plus4.h | |
parent | e8516832e941e39fa1db11211249afa9f015e7bb (diff) |
override part 1 (nw)
Diffstat (limited to 'src/devices/bus/ql/cst_q_plus4.h')
-rw-r--r-- | src/devices/bus/ql/cst_q_plus4.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ql/cst_q_plus4.h b/src/devices/bus/ql/cst_q_plus4.h index 3fa37a71bcc..29437632b1a 100644 --- a/src/devices/bus/ql/cst_q_plus4.h +++ b/src/devices/bus/ql/cst_q_plus4.h @@ -31,8 +31,8 @@ public: cst_q_plus4_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source, int ram_size); // optional information overrides - virtual const rom_entry *device_rom_region() const; - virtual machine_config_constructor device_mconfig_additions() const; + virtual const rom_entry *device_rom_region() const override; + virtual machine_config_constructor device_mconfig_additions() const override; DECLARE_WRITE_LINE_MEMBER( exp1_extintl_w ) { m_exp1_extinl = state; update_extintl(); } DECLARE_WRITE_LINE_MEMBER( exp2_extintl_w ) { m_exp2_extinl = state; update_extintl(); } @@ -41,11 +41,11 @@ public: protected: // device-level overrides - virtual void device_start(); + virtual void device_start() override; // device_ql_expansion_card_interface overrides - virtual UINT8 read(address_space &space, offs_t offset, UINT8 data); - virtual void write(address_space &space, offs_t offset, UINT8 data); + virtual UINT8 read(address_space &space, offs_t offset, UINT8 data) override; + virtual void write(address_space &space, offs_t offset, UINT8 data) override; private: void update_extintl() { m_slot->extintl_w(m_exp1_extinl || m_exp2_extinl || m_exp3_extinl || m_exp4_extinl); } |