URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 1314 to Rev 1315
- ↔ Reverse comparison
Rev 1314 → Rev 1315
/trunk/or1ksim/support/simprintf.c
96,8 → 96,12
arg = eval_mem32(argaddr,&breakpoint); |
argaddr += 4; |
#else |
sprintf(regstr, "r%u", ++argaddr); |
arg = evalsim_reg32(atoi(regstr)); |
{ |
unsigned char regstr[5]; |
|
sprintf(regstr, "r%u", ++argaddr); |
arg = evalsim_reg32(atoi(regstr)); |
} |
#endif |
debug(6, " 4: fmtstrpart=%p fmtstrpart=%s arg=%p\n", fmtstrpart, fmtstrpart, arg); |
tmp = fmtstrpart; |