summaryrefslogtreecommitdiff
path: root/time.cpp
blob: a5d1f0b52fdd74ef65e5baff107d48ec7f51e105 (plain)
1
2
3
4
5
6
7
8
9
#include "time.h"
#include "interrupt.h"

volatile uint32_t Time::systime;

template<>
void interrupt<Interrupt::SysTick>() {
	Time::systime++;
}