URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 392 to Rev 393
- ↔ Reverse comparison
Rev 392 → Rev 393
/trunk/or1ksim/cpu/or32/execute.c
108,7 → 108,7
debug(9, "atoi ret1\n"); |
return reg[regno]; |
} else { |
printf("\nEXCEPTION: read out of registers\n"); |
printf("\nABORT: read out of registers\n"); |
cont_run = 0; |
return 0; |
} |
137,7 → 137,7
reg[regno] = value; |
raw_stats.reg[regno] = cycles; |
} else { |
printf("\nEXCEPTION: write out of registers\n"); |
printf("\nABORT: write out of registers\n"); |
cont_run = 0; |
} |
} |
/trunk/or1ksim/cpu/dlx/execute.c
72,7 → 72,7
if (regno < MAX_GPRS) |
return reg[regno]; |
else { |
printf("\nEXCEPTION: read out of registers\n"); |
printf("\nABORT: read out of registers\n"); |
cont_run = 0; |
return 0; |
} |
93,7 → 93,7
if (regno < MAX_GPRS) |
reg[regno] = value; |
else { |
printf("\nEXCEPTION: write out of registers\n"); |
printf("\nABORT: write out of registers\n"); |
cont_run = 0; |
} |
|
642,7 → 642,7
simprintf(stackaddr, 0); |
/* printf("simprintf %x %x %x\n", stackaddr, fmtaddr, args); */ |
} else { |
printf("\nEXCEPTION: illegal opcode %s ", cur->insn); |
printf("\nABORT: illegal opcode %s ", cur->insn); |
printf("at %.8lx\n", cur->insn_addr); |
cont_run = 0; |
} |
/trunk/or1ksim/cpu/or16/execute.c
97,7 → 97,7
if (regno < MAX_GPRS) |
return reg[regno]; |
else { |
printf("\nEXCEPTION: read out of registers\n"); |
printf("\nABORT: read out of registers\n"); |
cont_run = 0; |
return 0; |
} |
132,7 → 132,7
if (regno < MAX_GPRS) |
reg[regno] = value; |
else { |
printf("\nEXCEPTION: write out of registers\n"); |
printf("\nABORT: write out of registers\n"); |
cont_run = 0; |
} |
return; |