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

12 lines
181 B
C
Raw Normal View History

2024-08-04 13:27:53 +02:00
#ifndef _DEVICES_INTERRUPT_H
#define _DEVICES_INTERRUPT_H
2024-01-13 23:06:01 +01:00
#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
}
2024-08-04 13:27:53 +02:00
#endif /* _DEVICES_INTERRUPT_H */