mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added the string for the SIMD Floating-Point exception.
This commit is contained in:
parent
a087f4b91c
commit
011e6eca95
1 changed files with 3 additions and 2 deletions
|
@ -36,14 +36,15 @@ namespace Sortix
|
|||
{
|
||||
const bool debugexception = true;
|
||||
|
||||
size_t numknownexceptions = 19;
|
||||
size_t numknownexceptions = 20;
|
||||
const char* exceptions[] =
|
||||
{ "Divide by zero", "Debug", "Non maskable interrupt", "Breakpoint",
|
||||
"Into detected overflow", "Out of bounds", "Invalid opcode",
|
||||
"No coprocessor", "Double fault", "Coprocessor segment overrun",
|
||||
"Bad TSS", "Segment not present", "Stack fault",
|
||||
"General protection fault", "Page fault", "Unknown interrupt",
|
||||
"Coprocessor fault", "Alignment check", "Machine check" };
|
||||
"Coprocessor fault", "Alignment check", "Machine check",
|
||||
"SIMD Floating-Point" };
|
||||
|
||||
Handler interrupthandlers[256];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue