19 lines
278 B
C
19 lines
278 B
C
![]() |
#ifndef __TIMER_H__
|
||
|
#define __TIMER_H__
|
||
|
|
||
|
typedef unsigned int UINT32 ;
|
||
|
|
||
|
|
||
|
typedef struct timer_struct{
|
||
|
|
||
|
int timer_irq_num;
|
||
|
UINT32 *load_count_reg;
|
||
|
UINT32 * control_reg;
|
||
|
UINT32 * eoi_reg;
|
||
|
irq_handler func;
|
||
|
|
||
|
}timer_desc;
|
||
|
void timer_init(int ape_id);
|
||
|
|
||
|
#endif
|