/* *****

        Operative System for MIPS Written by Filip Ekberg at the Blekinge Institute Of Technology
        Contact: Filip@SmartIT.se

*** */

#include <iregdef.h>
#include <idtcpu.h>
        .text
        .globl  ExceptionTable
/* *************************************************************************
        Error Table
		This will work as an Array
		when an Exception is thrown we will read the bit and jump to the right possition in this table

************************************************************************* */
.data
	ExceptionTable:	.word	External
			.word	UnhandledException
                        .word   UnhandledException
                        .word   UnhandledException
                        .word   UnhandledException
                        .word   UnhandledException
                        .word   UnhandledException
                        .word   UnhandledException
			.word	Syscall
