Does ".text" section contain variables?

  • What I want to do: I check the “.text” section in RAM at startup by a crc32 check. I used the “-crc” argument for the elxr linker to calculate a checksum of every section. This checksum (wich is generated at linking time) is compared to the checksum wich is calculated at startup (in ncc_init). - The problem: In my program the checksum of most of the sections are correct but the “.text” section has a checksum error. - My question: Are there any variable components in the .text section? Is some of the RAM image beeing overwritten after the decompressing? Any other ideas how to validate the RAM image? (I am executing from debugger. I have Net+OS 6.0 and GHS Multi 3.6)