redox/arch/x86_64/src/device/mod.rs
Jeremy Soller 64cc730eac Time (#11)
* WIP: Time syscalls

* Count time from PIT using low tickrate

* Implement realtime

* Implement nanosleep with a tight loop
2016-10-06 20:50:14 -06:00

8 lines
91 B
Rust

pub mod rtc;
pub mod serial;
pub unsafe fn init(){
rtc::init();
serial::init();
}