Changeset 5a95b25 in mainline for arch/mips32/src/debugger.c
- Timestamp:
- 2005-12-13T11:23:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91ef0d95
- Parents:
- 5bb8e45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/debugger.c
r5bb8e45 r5a95b25 232 232 panic("Weird breakpoint state.\n"); 233 233 if (!cur->executing) { 234 printf("***Breakpoint %d: %p in %s.\n", i,234 printf("***Breakpoint %d: 0x%p in %s.\n", i, 235 235 pstate->epc,symbol); 236 236 /* Return first instruction back */ … … 249 249 } 250 250 } else { 251 printf("***Breakpoint %p in %s.\n", pstate->epc, symbol);251 printf("***Breakpoint 0x%p in %s.\n", pstate->epc, symbol); 252 252 /* Move on to next instruction */ 253 253 pstate->epc += 4;
Note:
See TracChangeset
for help on using the changeset viewer.