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.
Hi,
I started reading the Keil ARMASM documentation and would like to create a minimal assembler program.
As I understood, the assembler itself expects a '__Vectors' and a 'Reset_Handler' label which are resolved by adding the startup file to the project.
But it still complains about missing a startup symbol '__main'.
If I add a 'main' or '_main' or '__main' label my assembler is not satisfied.
What do I mis or where can I find information how to solve this?
Thanks in advance,
Henk
if I add '--no_startup' to the linker options then nothing changes.
Well, it seems to be working at once after completely rebuilding the project.
Thanks.