mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
f513ac5e2f
- Fix Chou Aniki. Remove hack. - Fix lines in License Stub
33 lines
815 B
C
33 lines
815 B
C
/*****************************************************************************\
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
This file is licensed under the Snes9x License.
|
|
For further information, consult the LICENSE file in the root directory.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _SRTC_H_
|
|
#define _SRTC_H_
|
|
|
|
struct SRTCData
|
|
{
|
|
uint8 reg[20];
|
|
};
|
|
|
|
// for snapshot only
|
|
struct SSRTCSnapshot
|
|
{
|
|
int32 rtc_mode; // enum RTC_Mode
|
|
int32 rtc_index; // signed
|
|
};
|
|
|
|
extern struct SRTCData RTCData;
|
|
extern struct SSRTCSnapshot srtcsnap;
|
|
|
|
void S9xInitSRTC (void);
|
|
void S9xResetSRTC (void);
|
|
void S9xSRTCPreSaveState (void);
|
|
void S9xSRTCPostLoadState (int);
|
|
void S9xSetSRTC (uint8, uint16);
|
|
uint8 S9xGetSRTC (uint16);
|
|
|
|
#endif
|