mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
f4715d3c26
Also, rumble and wii-control code has been cleaned up a bit.
15 lines
285 B
C
15 lines
285 B
C
#ifndef RTC_H
|
|
#define RTC_H
|
|
|
|
u16 rtcRead(u32 address);
|
|
bool rtcWrite(u32 address, u16 value);
|
|
void rtcEnable(bool);
|
|
void rtcEnableWarioRumble(bool);
|
|
bool rtcIsEnabled();
|
|
void rtcReset();
|
|
|
|
void rtcReadGame(gzFile gzFile);
|
|
void rtcSaveGame(gzFile gzFile);
|
|
|
|
#endif // RTC_H
|