14 lines
251 B
C
Raw Normal View History

2009-01-10 02:41:39 +00:00
#ifndef RTC_H
#define RTC_H
2008-09-22 23:00:10 +00:00
2009-01-10 02:41:39 +00:00
u16 rtcRead(u32 address);
bool rtcWrite(u32 address, u16 value);
void rtcEnable(bool);
bool rtcIsEnabled();
void rtcReset();
2008-09-22 23:00:10 +00:00
2009-01-10 02:41:39 +00:00
void rtcReadGame(gzFile gzFile);
void rtcSaveGame(gzFile gzFile);
2008-09-22 23:00:10 +00:00
2009-01-10 02:41:39 +00:00
#endif // RTC_H