mirror of
https://github.com/libretro/beetle-wswan-libretro.git
synced 2024-11-23 07:59:40 +00:00
22 lines
375 B
C
22 lines
375 B
C
#ifndef __WSWAN_RTC_H
|
|
#define __WSWAN_RTC_H
|
|
|
|
#include "../mednafen-types.h"
|
|
#include "../state.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void WSwan_RTCWrite(uint32 A, uint8 V);
|
|
uint8 WSwan_RTCRead(uint32 A);
|
|
void WSwan_RTCReset(void);
|
|
void WSwan_RTCClock(uint32 cycles);
|
|
int WSwan_RTCStateAction(StateMem *sm, int load, int data_only);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|