You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
292 B
13 lines
292 B
5 months ago
|
#ifndef __INTC_H
|
||
|
#define __INTC_H
|
||
|
|
||
|
void intc_init(void);
|
||
|
void intc_set_handler(int irq, void (*handler)(void));
|
||
|
void intc_set_priority(int irq, int prio);
|
||
|
void intc_set_pending(int irq);
|
||
|
void intc_clear_pending(int irq);
|
||
|
void intc_enable_irq(int irq);
|
||
|
void intc_disable_irq(int irq);
|
||
|
|
||
|
#endif
|