Lines Matching full:exception
17 /* loading address of exception EAR */ in _hw_exception_handler()
21 printf("Hardware exception at 0x%x address\n", address); in _hw_exception_handler()
23 printf("Return address from exception 0x%x\n", address); in _hw_exception_handler()
24 switch (state & 0x1f) { /* mask on exception cause */ in _hw_exception_handler()
26 puts("Unaligned data access exception\n"); in _hw_exception_handler()
29 puts("Illegal op-code exception\n"); in _hw_exception_handler()
32 puts("Instruction bus error exception\n"); in _hw_exception_handler()
35 puts("Data bus error exception\n"); in _hw_exception_handler()
38 puts("Divide by zero exception\n"); in _hw_exception_handler()
42 puts("Priviledged or stack protection violation exception\n"); in _hw_exception_handler()
45 puts("Exception in delay slot\n"); in _hw_exception_handler()