SayoriOS  0.3.3
timer.h
1 #ifndef TIMER_H
2 #define TIMER_H
3 
4 
5 #include "portability.h"
6 
7 void timer_set_tac(unsigned char);
8 void timer_cycle(void);
9 unsigned char timer_get_div(void);
10 unsigned char timer_get_counter(void);
11 unsigned char timer_get_modulo(void);
12 unsigned char timer_get_tac(void);
13 void timer_set_div(unsigned char);
14 void timer_set_counter(unsigned char);
15 void timer_set_modulo(unsigned char);
16 #endif