MicrOS
interrupt_handler_definition.h
Go to the documentation of this file.
1 #ifndef INTERRUPT_HANDLER_DEFINITION_H
2 #define INTERRUPT_HANDLER_DEFINITION_H
3 
4 #include <stdint.h>
5 #include <stdbool.h>
6 
8 {
9  uint8_t interrupt_number;
10  bool (*handler)(interrupt_state *state);
12 
13 #endif
Definition: interrupt_state.h:8
uint8_t interrupt_number
Definition: interrupt_handler_definition.h:9
bool(* handler)(interrupt_state *state)
Definition: interrupt_handler_definition.h:10
Definition: interrupt_handler_definition.h:7