From 6bec0abb67008f50541ed77d472c4db61a3c7ee7 Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Sun, 9 Dec 2012 22:56:49 +0000 Subject: [PATCH] [MSM6242] More cleanups (nw) --- src/emu/machine/msm6242.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/emu/machine/msm6242.h b/src/emu/machine/msm6242.h index d47d587a764..e76f4dcdda0 100644 --- a/src/emu/machine/msm6242.h +++ b/src/emu/machine/msm6242.h @@ -48,7 +48,6 @@ public: // I/O operations DECLARE_WRITE8_MEMBER( write ); DECLARE_READ8_MEMBER( read ); - void rtc_timer_callback(); protected: // device-level overrides @@ -58,8 +57,6 @@ protected: virtual void device_reset(); virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); - static TIMER_CALLBACK( rtc_inc_callback ); - private: UINT8 m_reg[3]; UINT8 m_irq_flag; @@ -70,6 +67,8 @@ private: rtc_regs_t m_hold; devcb_resolved_write_line m_out_int_func; emu_timer * m_timer; + + void rtc_timer_callback(); };