aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/drivers/rtc.h
blob: 44a9c9e319c00001d3ec5b2f14619068211528fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// MIT License, Copyright (c) 2021 Marvin Borner

#ifndef RTC_H
#define RTC_H

#include <def.h>

struct rtc {
	u8 second;
	u8 minute;
	u8 hour;
	u8 day;
	u8 month;
	u32 year;
};

struct rtc rtc_read(void);
u32 rtc_stamp(void);
CLEAR void rtc_install(void);

#endif