We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Is it possibble to force the place of the RESET vector in the BL51 linker? I can move only the INTERRUPT vector places, but the RESET vector (LJMP XXXX) always be placed at 0x0000 adrress in the generated HEX file. Thanx in advance, Attila
Take a look at the following knowledgebase article. http://www.keil.com/support/docs/189.htm It tells how to relocate a whole program including the reset vector and interrupt vectors. Jon
It tells how to relocate ... the reset vector How will the chip work, it starts at 0, if the reset vector is not there? Erik
There must be something else at address zero, and that "something" must eventually call the application code (in fact, the application's startup code). Presumably a boot loader, or something?