mirror of https://github.com/xqemu/xqemu.git
11 lines
250 B
C
11 lines
250 B
C
![]() |
#ifndef MC146818RTC_H
|
||
|
#define MC146818RTC_H
|
||
|
|
||
|
typedef struct RTCState RTCState;
|
||
|
|
||
|
RTCState *rtc_init(int base_year);
|
||
|
void rtc_set_memory(RTCState *s, int addr, int val);
|
||
|
void rtc_set_date(RTCState *s, const struct tm *tm);
|
||
|
|
||
|
#endif /* !MC146818RTC_H */
|