MicrOS
exception_handler_definition.h
Go to the documentation of this file.
1 #ifndef EXCEPTION_HANDLER_DEFINITION_H
2 #define EXCEPTION_HANDLER_DEFINITION_H
3 
4 #include <stdint.h>
5 
7 {
8  uint8_t exception_number;
9  void (*handler)(exception_state *state);
11 
12 #endif
Definition: exception_state.h:7
Definition: exception_handler_definition.h:6
void(* handler)(exception_state *state)
Definition: exception_handler_definition.h:9
uint8_t exception_number
Definition: exception_handler_definition.h:8