URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.hp/] [gdb.compat/] [xdb.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> int callee( x ) int x; { int y = x * x; return (y - 2); } main() { int i; for (i = 1; i < 10; i++) { printf( "%d ", callee( i )); } printf( " Goodbye!\n" ); }
Go to most recent revision | Compare with Previous | Blame | View Log