URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [gdb-5.3/] [gdb/] [testsuite/] [gdb.hp/] [gdb.compat/] [xdb.c] - Rev 1765
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