Changeset 02a99d2 in mainline for arch/mips/src
- Timestamp:
- 2005-05-11T19:51:55Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 69515260
- Parents:
- 45671f48
- Location:
- arch/mips/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/cache.c
r45671f48 r02a99d2 32 32 void cache_error(void) 33 33 { 34 panic( PANIC"cache_error exception\n");34 panic("cache_error exception\n"); 35 35 } -
arch/mips/src/exception.c
r45671f48 r02a99d2 52 52 case EXC_TLBL: 53 53 case EXC_TLBS: tlb_invalid(); break; 54 default: panic( PANIC"unhandled exception %d\n", excno); break;54 default: panic("unhandled exception %d\n", excno); break; 55 55 } 56 56 -
arch/mips/src/interrupt.c
r45671f48 r02a99d2 76 76 case 0x4: 77 77 case 0x5: 78 case 0x6: panic( PANIC"unhandled interrupt %d\n", i); break;78 case 0x6: panic("unhandled interrupt %d\n", i); break; 79 79 case 0x7: 80 80 /* clear timer interrupt */ -
arch/mips/src/mm/tlb.c
r45671f48 r02a99d2 42 42 } 43 43 44 panic( PANIC"tlb_refill exception\n");44 panic("tlb_refill exception\n"); 45 45 } 46 46 47 47 void tlb_invalid(void) 48 48 { 49 panic( PANIC"%X: TLB exception at %X", cp0_badvaddr_read(), THREAD ? THREAD->saved_epc : 0);49 panic("%X: TLB exception at %X", cp0_badvaddr_read(), THREAD ? THREAD->saved_epc : 0); 50 50 } 51 51 -
arch/mips/src/panic.s
r45671f48 r02a99d2 33 33 .set nomacro 34 34 35 .global panic 35 .global panic_printf 36 36 37 panic :37 panic_printf: 38 38 jal printf 39 39 nop
Note:
See TracChangeset
for help on using the changeset viewer.