/
aristotel
/
openocd
Обзор
Документация
Войти
/
aristotel
/
openocd
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing/examples/cortex/test.c
27 строк
414 B
zwelch
Remove whitespace at end of lines, step 2.
24 июн 2009, 02:50
24 июн 2009, 02:50
c97caeb
Код
Авторство
О чём код?
/* 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++; } }