It seems to me that "raw data" should simply be the code or initialized data that is associated with a given symbol/location. For example, here's a snippet from the generated xml:
- <section>
<name>.sts</name>
<physical_addr>0xc04ce2dc</physical_addr>
<virtual_addr>0xc04ce2dc</virtual_addr>
<raw_data_size>0x30</raw_data_size>
<reloc_count>0x0</reloc_count>
<line_count>0x0</line_count>
<addr_size>0x1</addr_size>
<alignment>0x4</alignment>
<data>true</data>
- <file_offsets>
<raw_data_ptr>0x5990</raw_data_ptr>
<reloc_ptr>0x0</reloc_ptr>
<line_ptr>0x0</line_ptr>
</file_offsets>
<raw_data>AAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAACA</raw_data>
</section>
If I look at that same file in a hex editor, I see the following for the "raw data" section:
However, if I load the out file using CCS and look at the corresponding location I see:
Can someone explain how these all fit together? Is this a bug or am I completely misunderstanding this field?
Thanks,
Brad

