axle OS
x86_32 UNIX-like hobby OS
pit.h
1 #ifndef PIT_H
2 #define PIT_H
3 
4 #include <std/common.h>
5 
6 void pit_install(uint32_t frequency);
7 uint32_t tick_count();
8 
9 #endif