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,