使用seed_DEC6437开发板,启动方式为EMIF ROM FASTBOOT without AIS。boot LED 的例程启动没问题。 当换成我自己的程序时就启动不起来,中断进不去。下面是我自己的cmd文件:
MEMORY
{
BootLoader: o = 0x10800000 l = 0x00000400
INT: o = 0x10800400 l = 0x00000400
L2RAM: o = 0x10800800 l = 0x00020000
DDR2: o = 0x80000000 l = 0x10000000
ERAM_01: o = 0x90000000 l = 0x00100000
}
SECTIONS
{
.boot_load: > BootLoader
.bss > DDR2
.cinit > DDR2
.cio > DDR2
.const > DDR2
.data > DDR2
.far > DDR2
.stack > L2RAM
.switch > DDR2
.sysmem > DDR2
.text > DDR2
.vectors > INT
.ddr2 > DDR2
.data:IQmathTables : > ERAM_01
.text:IQmath : > ERAM_01
}
初步怀疑可能是中断的问题