I wish to be able to view the constant data generated by the compiler. IE
char code * some_strings[] = { "some text", "some more text" };
The compiler shows none of this pointers or actual data.
It seems this is omitted from the listing files completely, is there an option to make the compiler generate the information in it's listings instead of just showing the assembly code from the C source?
Stephen