终于成功了,我将
#define LOCAL_MEM_LOCAL_ADRS 0x00000000 /* Base of RAM */
#define LOCAL_MEM_SIZE 0x02000000 /* 32 Mbyte memory available */
#define ROM_BASE_ADRS 0xFF000000 /* base address of ROM */
#define ROM_TEXT_ADRS 0xFF000100 /* ROM_BASE_ADRS + 0x100 */
#define ROM_SIZE 0x01000000 /* ROM space */
改成
#define LOCAL_MEM_LOCAL_ADRS 0x00000000 /* Base of RAM */
#define LOCAL_MEM_SIZE 0x02000000 /* 32 Mbyte memory available */
#define ROM_BASE_ADRS 0xFE000000 /* base address of ROM */
#define ROM_TEXT_ADRS 0xFE000100 /* ROM_BASE_ADRS + 0x100 */
#define ROM_SIZE 0x01000000 /* ROM space */
就可以成功启动。不知什么原因啊?
看看这个帖子,历时近10个月,太感谢大家了!