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.

RE DSP BIOS standalone application for DM6467

I had gone through the following website: http://processors.wiki.ti.com/index.php/Secondary_Bootloaders_on_OMAP-L1x

For DM6467 based DSP BIOS application, I have included  "DSPbios.asm" file with following contents :

.global _c_int00
.sect ".nand_config_word"
config_word:
.word 0x00000F01
B _c_int00
NOP
NOP
NOP
NOP
NOP
NOP

After compilation I get the following warning message:

"Placing data in a code section DSPbios.asm"

I have called the functions from DSP gel file also.

When I go for emulation, it will yield the expected result.

But when I flash the bin format of the dsp bios application with ubl file, it will just boot ubl and stop. It will not invoke any of the functions present in DSP BIOS application.

For standalone DSP BIOS application, do I require "DSPbios.asm".

Please Reply,