Statistics
| Branch: | Revision:

root / include / hw / timer / mc146818rtc.h @ 0d09e41a

History | View | Annotate | Download (323 Bytes)

1
#ifndef MC146818RTC_H
2
#define MC146818RTC_H
3

    
4
#include "hw/isa/isa.h"
5
#include "hw/timer/mc146818rtc_regs.h"
6

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

    
11
#endif /* !MC146818RTC_H */