summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pit8253.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pit8253.h')
-rw-r--r--src/devices/machine/pit8253.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pit8253.h b/src/devices/machine/pit8253.h
index 8ccb3474404..722cfa5233d 100644
--- a/src/devices/machine/pit8253.h
+++ b/src/devices/machine/pit8253.h
@@ -135,8 +135,8 @@ public:
template <unsigned N, class Object> devcb_base &set_out_handler(Object &&cb) { return m_out_handler[N].set_callback(std::forward<Object>(cb)); }
template <unsigned N> auto out_handler() { return m_out_handler[N].bind(); }
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
WRITE_LINE_MEMBER(write_gate0) { m_counter[0]->gate_w(state); }
WRITE_LINE_MEMBER(write_gate1) { m_counter[1]->gate_w(state); }