blob: cad811d2c184a1668fb1a041c244fd4f00366c11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <arch/timer.h>
ticks_t stat_timer()
{
/* TODO: read from fdt */
return 0;
}
void set_timer(ticks_t ticks)
{
/* TODO */
}
ticks_t current_ticks()
{
/* TODO */
return 0;
}
|