/////////////////////////////////////////////////////////////////////////////////// // File : exc_handler.h // Date : 01/04/2012 // Author : alain greiner and joel porquet // Copyright (c) UPMC-LIP6 /////////////////////////////////////////////////////////////////////////////////// #ifndef _EXCP_HANDLER_H #define _EXCP_HANDLER_H /////////////////////////////////////////////////////////////////////////////////// // Exception Vector Table (indexed by cause register) /////////////////////////////////////////////////////////////////////////////////// typedef void (*_exc_func_t)(void); extern const _exc_func_t _cause_vector[16]; #endif