vbagx/source/vba/gba/RTC.h

14 lines
251 B
C
Raw Normal View History

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