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

#include "isa.h"

#define RTC_ISA_IRQ 8

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

#endif /* !MC146818RTC_H */