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?