summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/lpc-pit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/lpc-pit.h')
-rw-r--r--src/devices/machine/lpc-pit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/lpc-pit.h b/src/devices/machine/lpc-pit.h
index 467a6d2bd14..aa83b6af5ce 100644
--- a/src/devices/machine/lpc-pit.h
+++ b/src/devices/machine/lpc-pit.h
@@ -21,9 +21,9 @@ protected:
private:
void map(address_map &map);
- DECLARE_READ8_MEMBER( status_r);
- DECLARE_WRITE8_MEMBER(access_w);
- DECLARE_WRITE8_MEMBER(control_w);
+ uint8_t status_r(offs_t offset);
+ void access_w(offs_t offset, uint8_t data);
+ void control_w(uint8_t data);
};
DECLARE_DEVICE_TYPE(LPC_PIT, lpc_pit_device)