MNRS-BM-BSP/include/ehrenberg/devices/interrupt.h

12 lines
169 B
C
Raw Normal View History

2024-01-13 23:06:01 +01:00
#ifndef _BSP_INTERRUPT_H
#define _BSP_INTERRUPT_H
#include <stdint.h>
2024-06-10 12:21:20 +02:00
#define irq_t void*
2024-01-13 23:06:01 +01:00
2024-06-10 12:21:20 +02:00
inline void irq_init(volatile irq_t* reg){
2024-01-13 23:06:01 +01:00
}
#endif /* _BSP_INTERRUPT_H */