Changeset ccb426c in mainline for kernel/arch/mips32/src
- Timestamp:
- 2010-06-24T09:56:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 549012c
- Parents:
- 851f33a
- Location:
- kernel/arch/mips32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debugger.c
r851f33a rccb426c 260 260 unsigned int i; 261 261 262 printf("# Count Address INPROG ONESHOT FUNCCALL In symbol\n"); 263 printf("-- ----- ---------- ------ ------- -------- ---------\n"); 262 printf("[nr] [count] [address ] [inprog] [oneshot] [funccall] [in symbol\n"); 264 263 265 264 for (i = 0; i < BKPOINTS_MAX; i++) { … … 268 267 breakpoints[i].address); 269 268 270 printf("%- 2u %-5d %#10zx %-6s %-7s %-8s %s\n", i,269 printf("%-4u %7" PRIs " %p %-8s %-9s %-10s %s\n", i, 271 270 breakpoints[i].counter, breakpoints[i].address, 272 271 ((breakpoints[i].flags & BKPOINT_INPROG) ? "true" : -
kernel/arch/mips32/src/mm/frame.c
r851f33a rccb426c 249 249 void physmem_print(void) 250 250 { 251 printf("Base Size\n"); 252 printf("---------- ----------\n"); 251 printf("[base ] [size ]\n"); 253 252 254 253 size_t i; -
kernel/arch/mips32/src/mm/tlb.c
r851f33a rccb426c 455 455 hi_save.value = cp0_entry_hi_read(); 456 456 457 printf("# ASID VPN2 MASK G V D C PFN\n"); 458 printf("-- ---- ------ ---- - - - - ------\n"); 457 printf("[nr] [asid] [vpn2] [mask] [gvdc] [pfn ]\n"); 459 458 460 459 for (i = 0; i < TLB_ENTRY_COUNT; i++) { … … 467 466 lo1.value = cp0_entry_lo1_read(); 468 467 469 printf("%- 2u %-4u %#6x %#4x %1u %1u %1u %1u%#6x\n",468 printf("%-4u %-6u %#6x %#6x %1u%1u%1u%1u %#6x\n", 470 469 i, hi.asid, hi.vpn2, mask.mask, 471 470 lo0.g, lo0.v, lo0.d, lo0.c, lo0.pfn); 472 printf(" %1u %1u %1u %1u%#6x\n",471 printf(" %1u%1u%1u%1u %#6x\n", 473 472 lo1.g, lo1.v, lo1.d, lo1.c, lo1.pfn); 474 473 }
Note:
See TracChangeset
for help on using the changeset viewer.