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

unsigned char second;
unsigned char minute;
unsigned char hour;
unsigned char day;
unsigned char month;
unsigned int year;

void read_rtc();

void write_time();

#endif