summaryrefslogtreecommitdiff
path: root/kernel/drivers/cmos.c
AgeCommit message (Collapse)Author
2024-12-09timer: Use strings instead of direct int64_t to communicate with userlandAnton Kling
This makes it easier to write and read from /dev/clock using shell scripts. The actual performance decrease will be minimal and the interface is not that perfect for proper time keeping anyways.
2024-07-04CMOS: Make read/write calls asyncAnton Kling
This can speed up boot times since CMOS would otherwise have to wait before it could perform a read/write call. Now it gets triggered by a interrupt.
2024-07-03CMOS: Add basic CMOS RTC supportAnton Kling