// ***************** README.txt ************************************** // SBC-DBG sample program for ARMCortex-A9. // // (c) OJSC ELVEES, multicore.ru // // ******************************************************************* Install mingw msys utilities (http://www.mingw.org/) to use make command. Add \arm-eltools\bin\ to system PATH variable > make > ..\..\_gdb\gdb -x ..\..\_gdb\gdbinit infLoop.elf work with gdb (for example) > (gdb) b main > Breakpoint 1 at 0x20000448: file infLoop.c, line 23. > (gdb) run > Starting program: .\Windows\projects\infLoop\infLoop.elf > Loading executable: .\Windows\projects\infLoop\infLoop.elf > [New arm] > [New arm] > [New elcore] > [New elcore] > > Breakpoint 1, main () at infLoop.c:23 > 23 volatile UINT* pVal = 0; > (gdb)