I am working on a 6713 DSP project and I have the need to recompile the _auto_init() found in the rts.src. I extracted the _auto_init() from the rts.src and placed it in its own file to be included in my project.
By looking at the map file, I find that my _auto_init() is now linked in as expected, and the original rts library function is no longer in the map file. With no changes to the new _auto_init(), I find that it is not executing correctly. I suspect that I am missing either a compiler switch, or perhaps a linker command option to ensure that my new _auto_init() gets called appropriately.
Please let me know if you need any additional information to assist me in getting the _auto_init() function running properly. After I get it running, I will then begin to add my own src modifications.