diff options
author | 2015-12-05 21:20:22 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:56 +0100 | |
commit | 7ab3a5e0fc0c2e259c4011cdfce9684f2609592a (patch) | |
tree | 4fc55cd2e12f2b99b69bacb1dd0dd7d42bde3711 /src/devices/machine/lpc-pit.h | |
parent | 1db2b0d6b40ff3635b637f5e854c5fd62a9db169 (diff) |
override part 3 (nw)
Diffstat (limited to 'src/devices/machine/lpc-pit.h')
-rw-r--r-- | src/devices/machine/lpc-pit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/lpc-pit.h b/src/devices/machine/lpc-pit.h index 4a49a76c10c..a9e96a7b401 100644 --- a/src/devices/machine/lpc-pit.h +++ b/src/devices/machine/lpc-pit.h @@ -13,15 +13,15 @@ public: lpc_pit_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); virtual void map_device(UINT64 memory_window_start, UINT64 memory_window_end, UINT64 memory_offset, address_space *memory_space, - UINT64 io_window_start, UINT64 io_window_end, UINT64 io_offset, address_space *io_space); + UINT64 io_window_start, UINT64 io_window_end, UINT64 io_offset, address_space *io_space) override; DECLARE_READ8_MEMBER( status_r); DECLARE_WRITE8_MEMBER(access_w); DECLARE_WRITE8_MEMBER(control_w); protected: - void device_start(); - void device_reset(); + void device_start() override; + void device_reset() override; private: DECLARE_ADDRESS_MAP(map, 32); |