x86_rtc 0.1.0

System Real Time Clock (RTC) Drivers for x86_64 based on CMOS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# x86_rtc

[![Crates.io](https://img.shields.io/crates/v/x86_rtc)](https://crates.io/crates/x86_rtc)

System Real Time Clock (RTC) Drivers for x86_64 based on CMOS.

## Examples

```rust
use x86_rtc::Rtc;
let epoch_time = Rtc::new().get_unix_timestamp();
```