From 011e6eca95c1ed26324d107baf53ec538da35fe3 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 26 Oct 2011 02:25:27 +0200 Subject: [PATCH] Added the string for the SIMD Floating-Point exception. --- sortix/interrupt.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sortix/interrupt.cpp b/sortix/interrupt.cpp index 8153b21b..799970d1 100644 --- a/sortix/interrupt.cpp +++ b/sortix/interrupt.cpp @@ -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];