]>
Commit | Line | Data |
---|---|---|
e1460e47 IY |
1 | #ifndef MC146818RTC_H |
2 | #define MC146818RTC_H | |
3 | ||
1d914fa0 | 4 | #include "isa.h" |
fd94be7a | 5 | #include "mc146818rtc_regs.h" |
7d932dfd | 6 | |
48a18b3c | 7 | ISADevice *rtc_init(ISABus *bus, int base_year, qemu_irq intercept_irq); |
1d914fa0 IY |
8 | void rtc_set_memory(ISADevice *dev, int addr, int val); |
9 | void rtc_set_date(ISADevice *dev, const struct tm *tm); | |
e1460e47 IY |
10 | |
11 | #endif /* !MC146818RTC_H */ |