aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/cmos/rtc.h
blob: a277dd5ccfc8198cc33a70ff09b03b59ac85e02a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MELVIX_RTC_H
#define MELVIX_RTC_H

#include <stdint.h>

u8 second;
u8 minute;
u8 hour;
u8 day;
u8 month;
u32 year;

void read_rtc();

void rtc_print();

#endif