tmmdh 发表于 2015-6-28 10:21

DSP6713的bootload问题

DSP6713做bootload时程序编译正常,但是out文件无法load,提示data verification failed at address 0x90000000.please verify target memory and memory map, 如下图,在网上找了很长时间都不行,下面的是我的CMD文件,请大家帮我看看

http://www.logicdsp.com/data/attachment/forum/201506/28/101924y5f2s2ytffkm8sfr.jpg

MEMORY
{
    BOOTRAM:       o = 00000000h   l = 00000400h
    IRAM:          o = 00000400h   l = 0000FA00h
                              
    CE0:               o = 80000000h   l = 01000000h
    FLASH_BOOT:    o = 0x90000000l = 00000400h
    FLASH_REST:    o = 0x90000400l = 0001FC00h
                                                            
}

SECTIONS
{
      .boot_load : load = FLASH_BOOT, run = BOOTRAM   
                                                                  
    /* Initialized User Code Section */
    .text         : load = FLASH_REST, run = IRAM
             LOAD_START(_text_ld_start),
            RUN_START(_text_rn_start),
            SIZE(_text_size)
         
    /* This is also a special initialized data section, which could stay
       in ROM, however probably not desirable, due to Slow ROM access times.
       const values never change, by definition. */
   
   
    .cinit            >         FLASH_REST
   
    .const      >       IRAM
    .stack      >       IRAM
    .bss      >       IRAM
    .data       >       IRAM
    .far      >       IRAM
    .switch   >       IRAM
    .sysmem   >       IRAM
    .cio      >       IRAM
}                           


页: [1]
查看完整版本: DSP6713的bootload问题