Statistics
| Branch: | Revision:

root / hw / mc146818rtc.h @ ff753bb9

History | View | Annotate | Download (287 Bytes)

1
#ifndef MC146818RTC_H
2
#define MC146818RTC_H
3

    
4
#include "isa.h"
5

    
6
#define RTC_ISA_IRQ 8
7

    
8
ISADevice *rtc_init(int base_year, qemu_irq intercept_irq);
9
void rtc_set_memory(ISADevice *dev, int addr, int val);
10
void rtc_set_date(ISADevice *dev, const struct tm *tm);
11

    
12
#endif /* !MC146818RTC_H */