aboutsummaryrefslogtreecommitdiffstats
path: root/hw/mc146818rtc.h
blob: 6f46a68e023c34a16f0b288dd711a0668bf522d3 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef MC146818RTC_H
#define MC146818RTC_H

#include "isa.h"

ISADevice *rtc_init(int base_year);
void rtc_set_memory(ISADevice *dev, int addr, int val);
void rtc_set_date(ISADevice *dev, const struct tm *tm);

#endif /* !MC146818RTC_H */