Changeset 0dc2fec in mainline for kernel/arch/ia32/include/arch/interrupt.h
- Timestamp:
- 2016-05-22T19:19:43Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b272c67a
- Parents:
- 153c7a29 (diff), af2254ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/arch/interrupt.h
r153c7a29 r0dc2fec 50 50 #define IVT_FREEBASE (IVT_IRQBASE + IRQ_COUNT) 51 51 52 #define EXC_DE 0 53 #define EXC_NM 7 54 #define EXC_SS 12 55 #define EXC_GP 13 56 #define EXC_PF 14 57 #define EXC_XM 19 58 52 59 #define IRQ_CLK 0 53 60 #define IRQ_KBD 1 … … 65 72 #endif 66 73 67 #define VECTOR_DEBUG 1 74 #define VECTOR_DE (IVT_EXCBASE + EXC_DE) 75 #define VECTOR_NM (IVT_EXCBASE + EXC_NM) 76 #define VECTOR_SS (IVT_EXCBASE + EXC_SS) 77 #define VECTOR_GP (IVT_EXCBASE + EXC_GP) 78 #define VECTOR_PF (IVT_EXCBASE + EXC_PF) 79 #define VECTOR_XM (IVT_EXCBASE + EXC_XM) 68 80 #define VECTOR_CLK (IVT_IRQBASE + IRQ_CLK) 69 81 #define VECTOR_PIC_SPUR (IVT_IRQBASE + IRQ_PIC_SPUR)
Note:
See TracChangeset
for help on using the changeset viewer.