mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
[MSM6242] More cleanups (nw)
This commit is contained in:
parent
2569853c94
commit
6bec0abb67
@ -48,7 +48,6 @@ public:
|
|||||||
// I/O operations
|
// I/O operations
|
||||||
DECLARE_WRITE8_MEMBER( write );
|
DECLARE_WRITE8_MEMBER( write );
|
||||||
DECLARE_READ8_MEMBER( read );
|
DECLARE_READ8_MEMBER( read );
|
||||||
void rtc_timer_callback();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// device-level overrides
|
// device-level overrides
|
||||||
@ -58,8 +57,6 @@ protected:
|
|||||||
virtual void device_reset();
|
virtual void device_reset();
|
||||||
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
|
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
|
||||||
|
|
||||||
static TIMER_CALLBACK( rtc_inc_callback );
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
UINT8 m_reg[3];
|
UINT8 m_reg[3];
|
||||||
UINT8 m_irq_flag;
|
UINT8 m_irq_flag;
|
||||||
@ -70,6 +67,8 @@ private:
|
|||||||
rtc_regs_t m_hold;
|
rtc_regs_t m_hold;
|
||||||
devcb_resolved_write_line m_out_int_func;
|
devcb_resolved_write_line m_out_int_func;
|
||||||
emu_timer * m_timer;
|
emu_timer * m_timer;
|
||||||
|
|
||||||
|
void rtc_timer_callback();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user