Armadillo  0.1.1
TheexpandableOS
exceptions.h
Go to the documentation of this file.
1 
5 #ifndef __EXCEPTIONS_H__
6 #define __EXCEPTIONS_H__
7 
8 char *exceptions[13] = {
9  "0",
10  "1",
11  "2",
12  "3",
13  "Addrl exception! (Cause 4) Load from illegal address exception",
14  "Addrs exception! (Cause 5) Store to illegal address exception",
15  "Ibus exception! (Cause 6) Bus error on instruction fetch",
16  "Dbus exception! (Cause 7) Bus error on data reference",
17  "8",
18  "Bkpt exception! (Cause 9) Break instruction executed",
19  "Ri exception! (Cause 10) Reserved instruction",
20  "11",
21  "Ovf exception! (Cause 12) Arithmetic overflow"
22 };
23 
24 #endif