forked from auracaster/openocd
basic smoketest on lm3s3748.elf
git-svn-id: svn://svn.berlios.de/openocd/trunk@1020 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
27
testing/examples/cortex/test.c
Normal file
27
testing/examples/cortex/test.c
Normal file
@@ -0,0 +1,27 @@
|
||||
/* simple app.
|
||||
|
||||
modify test.ld to change address.
|
||||
|
||||
Even if the app is position independent, the symbols
|
||||
need to match to test basic debugging.
|
||||
|
||||
To load the app to 0x20000000 in GDB, use:
|
||||
|
||||
load a.out
|
||||
monitor reg sp 0x20004000
|
||||
monitor reg pc 0x20002000
|
||||
stepi
|
||||
|
||||
arm-elf-gcc -mthumb -mcpu=cortex-m3 -nostdlib -Ttest.ld test.c
|
||||
|
||||
|
||||
*/
|
||||
int j;
|
||||
void _start()
|
||||
{
|
||||
int i;
|
||||
for (i=0; i<1000; i++)
|
||||
{
|
||||
j++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user