aboutsummaryrefslogtreecommitdiff
path: root/VexRiscvSocSoftware/libs/prescaler.h
blob: 6bd9694a7fea3f9a53fd2da420b0fceba4480d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PRESCALERCTRL_H_
#define PRESCALERCTRL_H_

#include <stdint.h>


typedef struct
{
  volatile uint32_t LIMIT;
} Prescaler_Reg;

static void prescaler_init(Prescaler_Reg* reg){

}

#endif /* PRESCALERCTRL_H_ */