You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
175 B
C

#ifndef TIMER_H
#define TIMER_H
#include "util.h"
// number chosen to be integer divisor of PIC frequency
#define TIMER_TPS 363
u64 timer_get();
void timer_init();
#endif