Lines Matching full:exception
16 /* loading address of exception EAR */ in _hw_exception_handler()
20 printf("Hardware exception at 0x%x address\n", address); in _hw_exception_handler()
22 printf("Return address from exception 0x%x\n", address); in _hw_exception_handler()
23 switch (state & 0x1f) { /* mask on exception cause */ in _hw_exception_handler()
25 puts("Unaligned data access exception\n"); in _hw_exception_handler()
28 puts("Illegal op-code exception\n"); in _hw_exception_handler()
31 puts("Instruction bus error exception\n"); in _hw_exception_handler()
34 puts("Data bus error exception\n"); in _hw_exception_handler()
37 puts("Divide by zero exception\n"); in _hw_exception_handler()
41 puts("Priviledged or stack protection violation exception\n"); in _hw_exception_handler()
44 puts("Exception in delay slot\n"); in _hw_exception_handler()