diff options
Diffstat (limited to 'kernel/inc/rtc.h')
-rw-r--r-- | kernel/inc/rtc.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/kernel/inc/rtc.h b/kernel/inc/rtc.h deleted file mode 100644 index 44a9c9e..0000000 --- a/kernel/inc/rtc.h +++ /dev/null @@ -1,21 +0,0 @@ -// 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 |