blob: 899f09f24599efc60b0c3879382acd6ae2847a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TIMER_H
#define TIMER_H
#include <types.h>
#define TICKS_PER_SECOND 1000
void timer_handler(uint64_t rsp);
void wait(uint64_t ms);
void init_timer(uint32_t frequency);
#endif
|