1 /** @file
2   Exception definitions.
3 
4   Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
5   SPDX-License-Identifier: BSD-2-Clause-Patent
6 
7 **/
8 
9 #ifndef _DEBUG_EXCEPTION_H_
10 #define _DEBUG_EXCEPTION_H_
11 
12 #define DEBUG_EXCEPT_DIVIDE_ERROR             0
13 #define DEBUG_EXCEPT_DEBUG                    1
14 #define DEBUG_EXCEPT_NMI                      2
15 #define DEBUG_EXCEPT_BREAKPOINT               3
16 #define DEBUG_EXCEPT_OVERFLOW                 4
17 #define DEBUG_EXCEPT_BOUND                    5
18 #define DEBUG_EXCEPT_INVALID_OPCODE           6
19 #define DEBUG_EXCEPT_DOUBLE_FAULT             8
20 #define DEBUG_EXCEPT_INVALID_TSS             10
21 #define DEBUG_EXCEPT_SEG_NOT_PRESENT         11
22 #define DEBUG_EXCEPT_STACK_FAULT             12
23 #define DEBUG_EXCEPT_GP_FAULT                13
24 #define DEBUG_EXCEPT_PAGE_FAULT              14
25 #define DEBUG_EXCEPT_FP_ERROR                16
26 #define DEBUG_EXCEPT_ALIGNMENT_CHECK         17
27 #define DEBUG_EXCEPT_MACHINE_CHECK           18
28 #define DEBUG_EXCEPT_SIMD                    19
29 
30 #endif
31