Reply by Mike Dunn September 14, 20052005-09-14
Aditya,
 
Refer to to CCS Help on the hex conversion utility.  The following text came from there:
 
unconfigured memory error
Description
The COFF file contains a section whose load address falls outside the memory range defined in the ROMS directive.
Action
Correct the ROM range as defined by the ROMS directive to cover the memory range needed, or modify the section load address. Remember that if the ROMS directive is not used, the memory range defaults to the entire processor address space. For this reason, removing the ROMS directive could also be a workaround.
 
mikedunn

adityaarundeshpande <a...@yahoo.com> wrote:
hi mike,

i have written the boot code for second level boot process and i m
trying to convert .out file of my application to .hex file by using
hex6x utility,
actually i am refering spra999 for writing second level boot code, i
tried both the ways which are mentioned in that doc, i mean by
writing copytable in bootcode and by using hex utility to get
copytable, i m getting same warnings in both the cases.

though i m getting the .hex file, i read the mail from you on group
in which u asked to increase the length in hex file i tried and the
i m getting error mentioned below.////////////////////i m getting following out put/////////////////////

Translating .\debug\DSP_client_v363dbg.out to ASCII-Hex format...
".\debug\DSP_client_v363dbg.out" ==> .args
>> WARNING: section '.args' at 0800002b4h falls in unconfigured
memory (skipped)
".\debug\DSP_client_v363dbg.out" ==> .log
>> WARNING: section '.log' at 0800003c8h falls in unconfigured memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .stack
>> WARNING: section '.stack' at 0800476c0h falls in unconfigured
memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .sts
>> WARNING: section '.sts' at 0800604e0h falls in unconfigured memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .LOG_system$buf
>> WARNING: section '.LOG_system$buf' at 080060600h falls in
unconfigured memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .trace
>> WARNING: section '.trace' at 08006df70h falls in unconfigured
memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .trace$buf
>> WARNING: section '.trace$buf' at 080070000h falls in unconfigured
memory
(skipped)
".\debug\DSP_client_v363dbg.out" ==> .boot_load
".\debug\DSP_client_v363dbg.out" ==> .hwi_vec
".\debug\DSP_client_v363dbg.out" ==> .gblinit
".\debug\DSP_client_v363dbg.out" ==> .trcdata
".\debug\DSP_client_v363dbg.out" ==> .pinit
".\debug\DSP_client_v363dbg.out" ==> .sysinit
".\debug\DSP_client_v363dbg.out" ==> .cinit
".\debug\DSP_client_v363dbg.out" ==> .const
".\debug\DSP_client_v363dbg.out" ==> .switch
".\debug\DSP_client_v363dbg.out" ==> .text
".\debug\DSP_client_v363dbg.out" ==> .bios
".\debug\DSP_client_v363dbg.out" ==> .rtdx_text

//////////////////////error///////////////////////////////////////

"hex.cmd", line 10: ERROR: length missing on FLASH (required for -
image)
>> FATAL ERROR: errors prevent conversion (aborting)

////////////////////////////////////////////////////////////////////

can u help me out of this, i mean can u tell me how to eliminate
these warnings and i want to ask one more thing, if i ignore these
warnings will there b any problems.

Thanking u
Aditya A. Deshpande..