armOS  0.1.0
Minimal ARM Operating System for the Raspberry Pi - Documentation generated for Pi 4.
entry.h
Go to the documentation of this file.
1 
10 #ifndef ARM6_ENTRY_H
11 #define ARM6_ENTRY_H
12 
14 #define EXCEPT_RESET 0
15 
16 #define EXCEPT_UNDEFINED_INSTR 1
17 
18 #define EXCEPT_SWI 2
19 
20 #define EXCEPT_PREFECH_ABORT 3
21 
22 #define EXCEPT_DATA_ABORT 4
23 
24 #define EXCEPT_RESERVED 5
25 
26 #define EXCEPT_IRQ 6
27 
28 #define EXCEPT_FIQ 7
29 
31 #endif