哪个大神知道?
waring:section flash.out(.text) at 0600008h falls in unconfigured memory (skipped)
.
.
.
好多这样的警告;
hex6x makefile.cmd
flash.out
-a
-order L
-memwidth 8
-image
-map memory.map
ROMS
{
FLASH: org = 0xB0000000, len = 0x40000, romwidth = 8, files = {image.hex}
}
/****************************************************************************************/
link.cmd
MEMORY
{
VEC: o = 0x00800000 l = 0x200
BOOTRAM: o = 0x00800200 l = 0x200
// L2_PRAM: o = 0x00800400 l = 0xFFC00
// L2_BRAM: o = 0x00900000 l = 0x100000
boot: o = 0xB0000000 l = 0x400
FLASH: o = 0xB0000400 l = 0x3FFD00
// DDR2: o = 0xE0000000 l = 0x10000000
}
SECTIONS
{
"bootload" > boot run =BOOTRAM
.text > FLASH run = IRAM, LOAD_START(FLASH_TEXT_START), RUN_START(RAM_TEXT_START), SIZE(TEXT_SIZE)
.cinit > FLASH run = IRAM, LOAD_START(FLASH_CINIT_START), RUN_START(RAM_CINIT_START), SIZE(CINIT_SIZE)
.const > FLASH run = IRAM, LOAD_START(FLASH_CONST_START), RUN_START(RAM_CONST_START), SIZE(CONST_SIZE)
.switch > FLASH run = IRAM, LOAD_START(FLASH_SWITCH_START), RUN_START(RAM_SWITCH_START), SIZE(SWITCH_SIZE)
.data > IRAM
.stack > IRAM
.bss > IRAM
.far > IRAM
.sysmem > IRAM
.cio > IRAM
.vecs > FLASH run = VEC, LOAD_START(FLASH_VECTOR_START), RUN_START(RAM_VECTOR_START), SIZE(VECTOR_SIZE)
}
/***********************************************************************************************************************************************************/
还有DSP/BIOS的.cmd
然后就warning了