Other compilers I've used support directives that allow C programs to get the length of my text segment at run time, but I can't find anything in the CCS version 5.1.6 documentation.
I know that the linker outputs a .map file that includes the necessary symbols (e.g., .text, etext) but how can I access these from the C program? I need to know the starting and ending address of the text segment and its length.
Thanks -- Mike