pc-timer 0.1.8

Intel 8253 programming-based timer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use core::hint::unreachable_unchecked;

#[allow(unused_variables)]
pub unsafe fn init(frequency: u16) {
    panic!("cfg(target_os=\"dos\")")
}

pub unsafe fn done() {
    unreachable_unchecked()
}

pub unsafe fn ticks() -> u64 {
    unreachable_unchecked()
}