aboutsummaryrefslogtreecommitdiff
path: root/VexRiscvSocSoftware/libs/gpio.h
blob: 34348fec0aa202b4b0d716239da3504b2effdb71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef GPIO_H_
#define GPIO_H_


typedef struct
{
  volatile uint32_t INPUT;
  volatile uint32_t OUTPUT;
  volatile uint32_t OUTPUT_ENABLE;
} Gpio_Reg;


#endif /* GPIO_H_ */