18 lines
217 B
C
18 lines
217 B
C
|
|
#ifndef INTERRUPTS_H
|
|
#define INTERRUPTS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void isr(u8_t int_num, int_stack_t * int_stack);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
void interrupts_bootstrap();
|
|
|
|
#endif
|