9 lines
97 B
C
9 lines
97 B
C
|
#ifndef _IRQ_H
|
||
|
#define _IRQ_H
|
||
|
|
||
|
#include <types.h>
|
||
|
|
||
|
void irq_handler(uint8_t irq_number);
|
||
|
|
||
|
#endif
|