diff options
Diffstat (limited to 'VexRiscvSocSoftware/libs/timer.h')
-rw-r--r-- | VexRiscvSocSoftware/libs/timer.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/libs/timer.h b/VexRiscvSocSoftware/libs/timer.h new file mode 100644 index 0000000..1577535 --- /dev/null +++ b/VexRiscvSocSoftware/libs/timer.h @@ -0,0 +1,20 @@ +#ifndef TIMERCTRL_H_ +#define TIMERCTRL_H_ + +#include <stdint.h> + + +typedef struct +{ + volatile uint32_t CLEARS_TICKS; + volatile uint32_t LIMIT; + volatile uint32_t VALUE; +} Timer_Reg; + +static void timer_init(Timer_Reg *reg){ + reg->CLEARS_TICKS = 0; + reg->VALUE = 0; +} + + +#endif /* TIMERCTRL_H_ */ |