Files
mop3/kernel/amd64/rtc.h
kamkow1 245196b80f
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 32s
Build documentation / build-and-deploy (push) Successful in 41s
date_time () syscall, Get date-time from RTC
2026-04-12 21:13:20 +02:00

11 lines
180 B
C

#ifndef _KERNEL_AMD64_RTC_H
#define _KERNEL_AMD64_RTC_H
#include <time.h>
void rtc_init (void);
void rtc_date_time (struct date_time* date_time);
#endif // _KERNEL_AMD64_RTC_H