Tool/software:
Hello,
I'm working on a custom bootloader for the TMS320C6655 DSP. The bootloader successfully initializes PLL, DDR3, and SPI NOR flash. I can read the application binary data from flash and load it into DDR (address 0x80000000).
However, I'm struggling with generating the correct .bin file for my application.
I wanted to Generate a .bin
file from .out
that can be directly loaded by my custom bootloader into DDR at 0x80000000
. and After loading, I jump to the entry point (e.g., _c_int00
) to start execution.
-
What is the correct way to generate a flat binary (.bin) file from a
.out
for use with a custom bootloader? -
If I must use the boot table format, is there documentation or example code on parsing the BTBL structure manually?
Thank you,
Eswara Majji