DSPRelated.com
Forums

Data varification failed at address 0x0(C6205, CCS 2.2.0)

Started by happy_zrr November 20, 2003
Hi,all:
me again! This time I got another question!
I am using Emulator XDS510 which is connected with my target
board (after tested on the simulator correctly). When I loaded my
program to the target, sometimes I got error message "Data
varification failed at address 0x0 Please verify target memory and
memory map".I said sometimes because it can be loaded occasionnally.

My linker command file is as follow:

MEMORY
{
IPRAM : origin = 0x00000000, len = 0x10000
IDRAM : origin = 0x80000000, len = 0x10000
}

SECTIONS
{
.vectors > IPRAM
.text > IPRAM

.bss > IDRAM
.cinit > IDRAM
.const > IDRAM
.far > IDRAM
.stack > IDRAM
.cio > IDRAM
.sysmem > IDRAM
}
When I changed the origin of IPRAM as: origin = 0x00000220, the
error message will appear as "Data varification failed at address
0x00000220 Please verify target memory and memory map".
Have you encountered such situation? How did you solved it? Thanks
for your answers in advance!