summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/64k.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-05 20:32:27 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-05 21:20:53 +0100
commit1c4865d66ff88a6891ebdde4580c3d61ee46ffa2 (patch)
tree268936fc8389b1a2adb8bfc3fa3006f12a4ccc95 /src/devices/bus/pet/64k.h
parente8516832e941e39fa1db11211249afa9f015e7bb (diff)
override part 1 (nw)
Diffstat (limited to 'src/devices/bus/pet/64k.h')
-rw-r--r--src/devices/bus/pet/64k.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/pet/64k.h b/src/devices/bus/pet/64k.h
index 6a7511357ad..ed698f539d1 100644
--- a/src/devices/bus/pet/64k.h
+++ b/src/devices/bus/pet/64k.h
@@ -31,13 +31,13 @@ public:
protected:
// device-level overrides
- virtual void device_start();
- virtual void device_reset();
+ virtual void device_start() override;
+ virtual void device_reset() override;
// device_pet_expansion_card_interface overrides
- virtual int pet_norom_r(address_space &space, offs_t offset, int sel);
- virtual UINT8 pet_bd_r(address_space &space, offs_t offset, UINT8 data, int &sel);
- virtual void pet_bd_w(address_space &space, offs_t offset, UINT8 data, int &sel);
+ virtual int pet_norom_r(address_space &space, offs_t offset, int sel) override;
+ virtual UINT8 pet_bd_r(address_space &space, offs_t offset, UINT8 data, int &sel) override;
+ virtual void pet_bd_w(address_space &space, offs_t offset, UINT8 data, int &sel) override;
private:
inline UINT8 read_ram(offs_t offset);