MDK 3.05, GNU toolchain, LPC blinky example,
This example includes two files Startup.s and blinky.c.
When I change Startup.s into other name, such as tt.s, but I didn't change any code. Compiling success, but debugger can not locate a correct location.
How can I fix this problem? so debugger can locate a correct location with tt.s instead of Startup.s.
Also, in Startup.s, pc will skip into _start, but _start is not defined anywhere. In fact, pc skip into main funciton in C. Also, if I changed main into other name, compiling is not correct? How to solve this problem? thanks,