URL
https://opencores.org/ocsvn/core_arm/core_arm/trunk
Subversion Repositories core_arm
[/] [core_arm/] [trunk/] [soft/] [tbenchsoft/] [arm/] [test.c] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
int main () { return 1; } int func2 (int i) { return i + 1; } int func1 () { int i,j,k; j = 0; for (i = 0; i < 100;i++) { j = func2 (j); } return j; }
Go to most recent revision | Compare with Previous | Blame | View Log