
* WIP: Time syscalls * Count time from PIT using low tickrate * Implement realtime * Implement nanosleep with a tight loop
8 lines
91 B
Rust
8 lines
91 B
Rust
pub mod rtc;
|
|
pub mod serial;
|
|
|
|
pub unsafe fn init(){
|
|
rtc::init();
|
|
serial::init();
|
|
}
|