diff options
author | 2016-03-07 14:45:58 +0100 | |
---|---|---|
committer | 2016-03-07 14:45:58 +0100 | |
commit | 8ea9ff6a7afdcc5ca5e48351feee06e43d7fc4ee (patch) | |
tree | d3dfa7422f877f4902ed4e3b3f94a5d15cc41c58 /src/devices/machine/rtc9701.h | |
parent | fea09343fb83663225a5099f2fb857e264588be9 (diff) |
TIMER_CALLBACK to TIMER_CALLBACK_MEMBER (nw)
Diffstat (limited to 'src/devices/machine/rtc9701.h')
-rw-r--r-- | src/devices/machine/rtc9701.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/machine/rtc9701.h b/src/devices/machine/rtc9701.h index 14407f157ec..c294cb5d9f1 100644 --- a/src/devices/machine/rtc9701.h +++ b/src/devices/machine/rtc9701.h @@ -59,7 +59,7 @@ public: DECLARE_READ_LINE_MEMBER( read_bit ); DECLARE_WRITE_LINE_MEMBER( set_cs_line ); DECLARE_WRITE_LINE_MEMBER( set_clock_line ); - void timer_callback(); + TIMER_CALLBACK_MEMBER(timer_callback); protected: // device-level overrides @@ -74,8 +74,6 @@ protected: inline UINT8 rtc_read(UINT8 offset); inline void rtc_write(UINT8 offset,UINT8 data); - static TIMER_CALLBACK( rtc_inc_callback ); - int m_latch; int m_reset_line; int m_clock_line; |