Changes in kernel/arch/mips32/src/exception.c [8469c53:41a7f62] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/exception.c
r8469c53 r41a7f62 74 74 void istate_decode(istate_t *istate) 75 75 { 76 printf("epc=% #010" PRIx32 "\tsta=%#010" PRIx32 "\t"76 printf("epc=%p\tsta=%#010" PRIx32 "\t" 77 77 "lo =%#010" PRIx32 "\thi =%#010" PRIx32 "\n", 78 istate->epc, istate->status, istate->lo, istate->hi); 78 (void *) istate->epc, istate->status, 79 istate->lo, istate->hi); 79 80 80 81 printf("a0 =%#010" PRIx32 "\ta1 =%#010" PRIx32 "\t" … … 106 107 istate->s8, istate->at, istate->kt0, istate->kt1); 107 108 108 printf("sp =% #010" PRIx32 "\tra =%#010" PRIx32 "\t"109 "gp =%#010" PRIx32 "\n",110 istate->sp, istate->ra,istate->gp);109 printf("sp =%p\tra =%p\tgp =%p\n", 110 (void *) istate->sp, (void *) istate->ra, 111 (void *) istate->gp); 111 112 } 112 113
Note:
See TracChangeset
for help on using the changeset viewer.