Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
42 | pj | 1 | /* Project: OSLib |
2 | * Description: The OS Construction Kit |
||
3 | * Date: 1.6.2000 |
||
4 | * Idea by: Luca Abeni & Gerardo Lamastra |
||
5 | * |
||
6 | * OSLib is an SO project aimed at developing a common, easy-to-use |
||
7 | * low-level infrastructure for developing OS kernels and Embedded |
||
8 | * Applications; it partially derives from the HARTIK project but it |
||
9 | * currently is independently developed. |
||
10 | * |
||
11 | * OSLib is distributed under GPL License, and some of its code has |
||
12 | * been derived from the Linux kernel source; also some important |
||
13 | * ideas come from studying the DJGPP go32 extender. |
||
14 | * |
||
15 | * We acknowledge the Linux Community, Free Software Foundation, |
||
16 | * D.J. Delorie and all the other developers who believe in the |
||
17 | * freedom of software and ideas. |
||
18 | * |
||
19 | * For legalese, check out the included GPL license. |
||
20 | */ |
||
21 | |||
22 | /* Hardware exceptions */ |
||
23 | |||
24 | #ifndef __LL_SYS_LL_HW_EXC_H__ |
||
25 | #define __LL_SYS_LL_HW_EXC_H__ |
||
26 | |||
27 | #define DIV_BY_0 0 /* These are the ll... exceptions */ |
||
28 | #define MATH_EXC 1 |
||
29 | #define NMI_EXC 2 |
||
30 | #define DEBUG_EXC 3 |
||
31 | #define BREAKPOINT_EXC 4 |
||
32 | #define HW_FAULT 5 |
||
33 | #define NO_MORE_HW_DESC 6 |
||
34 | #define VM86_PANIC 7 |
||
35 | /* Please, do not confuse them with the HW exception!!! */ |
||
36 | |||
37 | #define CLOCK_OVERRUN 64 /* Warning this is used in vm1.asm */ |
||
38 | |||
39 | #endif /* __LL_SYS_LL_HW_EXC_H__ */ |
||
40 |