Last change
on this file since 175 was
158,
checked in by alain, 13 years ago
|
Introducing the giet_vm and some example applications
|
File size:
654 bytes
|
Rev | Line | |
---|
[158] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : exc_handler.h |
---|
| 3 | // Date : 01/04/2012 |
---|
| 4 | // Author : alain greiner and joel porquet |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
| 8 | #ifndef _EXCP_HANDLER_H |
---|
| 9 | #define _EXCP_HANDLER_H |
---|
| 10 | |
---|
| 11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 12 | // Exception Vector Table (indexed by cause register) |
---|
| 13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 14 | |
---|
| 15 | typedef void (*_exc_func_t)(void); |
---|
| 16 | extern const _exc_func_t _cause_vector[16]; |
---|
| 17 | |
---|
| 18 | #endif |
---|
| 19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.