Changeset cf85e24c in mainline for arch/mips32
- Timestamp:
- 2006-04-22T23:00:26Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 12c7f27
- Parents:
- e692a27
- Location:
- arch/mips32/src
- Files:
-
- 2 edited
-
drivers/arc.c (modified) (3 diffs)
-
exception.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/drivers/arc.c
re692a27 rcf85e24c 136 136 switch (configdata->descr[i].type) { 137 137 case CmResourceTypePort: 138 printf("Port: % P-size:%d ",138 printf("Port: %p-size:%d ", 139 139 (__address)configdata->descr[i].u.port.start, 140 140 configdata->descr[i].u.port.length); … … 146 146 break; 147 147 case CmResourceTypeMemory: 148 printf("Memory: % P-size:%d ",148 printf("Memory: %p-size:%d ", 149 149 (__address)configdata->descr[i].u.port.start, 150 150 configdata->descr[i].u.port.length); … … 213 213 desc = arc_entry->getmemorydescriptor(NULL); 214 214 while (desc) { 215 printf("%s: %d(% P) (size: %dKB)\n",basetypes[desc->type],215 printf("%s: %d(%p) (size: %dKB)\n",basetypes[desc->type], 216 216 desc->basepage * ARC_FRAME, 217 217 desc->basepage * ARC_FRAME, -
arch/mips32/src/exception.c
re692a27 rcf85e24c 74 74 rasymbol = s; 75 75 76 printf("PC: %#X(%s) RA: %#X(%s), SP(%P)\n",istate->epc,pcsymbol, 77 istate->ra,rasymbol, istate->sp); 76 printf("PC: %#x(%s) RA: %#x(%s), SP(%p)\n", istate->epc, pcsymbol, istate->ra, rasymbol, istate->sp); 78 77 } 79 78
Note:
See TracChangeset
for help on using the changeset viewer.
