gdb-msvc/sim/m32c/timer_a.h

15 lines
208 B
C
Raw Normal View History

2020-06-18 10:11:10 +02:00
typedef struct
{
int count;
int reload;
int prescale;
int tcspr;
unsigned char bsr;
unsigned char mode;
unsigned char ic;
} Timer_A;
extern Timer_A timer_a;
extern void update_timer_a (void);