litex/misoc/software/include/base/time.h
Sebastien Bourdeauducq e92d00f767 move software into misoc
2015-09-28 15:30:19 +08:00

15 lines
191 B
C

#ifndef __TIME_H
#define __TIME_H
#ifdef __cplusplus
extern "C" {
#endif
void time_init(void);
int elapsed(int *last_event, int period);
#ifdef __cplusplus
}
#endif
#endif /* __TIME_H */