This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Placing _c_int00 in specific location using liker command file.

According to the method http://processors.wiki.ti.com/index.php/Accessing_c_int00 I am attempting to force _c_init00 in a specific location for use with a custom bootloader. In my linker command file I have added

 SECTIONS {
   .text:_c_int00 > 0x300000
 }

to place the _c_int00 for my SYS/BIOS application and the very beginning of the internal flash on the TMS32028335. This is the sanctioned method according to the referenced link.

However, when I check to the map file to confirm that _c_int00 is where I desire to place it, it is shown to sit at address 0x00320d9d.

What might I be doing wrong?