Hi,
I use the ARM Compiler V5.0.5. I want to have two initialized sections in the file "test.asm" and I write the following:
.sect ".image_endtoken"
.word 0AB73h
.sect ".text_SRAM"
...
The input section .text_SRAM gets recognized by the compiler but .image_endtoken is not.
The linker tells me "warning #10068-D: no matching section" when I try to map the input section:
.image_endtoken : {test.obj (.image_endtoken)}
What is wrong?
Best regards,
Patrick