URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.mi/] [mi-read-memory.c] - Rev 106
Go to most recent revision | Compare with Previous | Blame | View Log
static char bytes[256]; static short shorts[256]; static void initialize (void) { int i; for (i = 0; i < sizeof (bytes); i++) { bytes[i] = i; shorts[i] = i * 2; } } int main () { initialize (); }
Go to most recent revision | Compare with Previous | Blame | View Log