d2456b44f7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6991 a1c6a512-1295-4272-9138-f99709370657
25 lines
315 B
C
25 lines
315 B
C
|
|
|
|
#ifndef __RTC_GB_H__
|
|
#define __RTC_GB_H__
|
|
|
|
|
|
struct rtc
|
|
{
|
|
int batt;
|
|
int sel;
|
|
int latch;
|
|
int d, h, m, s, t;
|
|
int stop, carry;
|
|
byte regs[8];
|
|
};
|
|
|
|
extern struct rtc rtc;
|
|
|
|
void rtc_latch(byte b);
|
|
void rtc_write(byte b);
|
|
void rtc_tick(void);
|
|
void rtc_save_internal(int fd);
|
|
void rtc_load_internal(int fd);
|
|
|
|
#endif
|