#define LOCAL_MEM_LOCAL_ADRS 0x00000000 /* fixed at zero */
#define LOCAL_MEM_SIZE 0x04000000 /* 64 Mbytes */
#define LOCAL_MEM_END_ADRS (LOCAL_MEM_LOCAL_ADRS + LOCAL_MEM_SIZE)
#define ROM_BASE_ADRS 0x00000000 /* base of Flash/EPROM */
#define ROM_TEXT_ADRS 0x24000000 /* code start addr in ROM */
#define ROM_SIZE 0x00400000 /* size of ROM holding VxWorks*/
#define RAM_LOW_ADRS 0x00006000 /* VxWorks image entry point */
#define RAM_HIGH_ADRS 0x00480000 /* RAM address for ROM boot */
这是2410bsp中一段,总觉得
#define LOCAL_MEM_LOCAL_ADRS 0x00000000 /* fixed at zero */
和#define ROM_BASE_ADRS 0x00000000 定义的有点问题,这两个地址一个是RAM的起始地址,一个是ROM的起始地址,怎能定义的一样呢,另外2410是不能进行地址remap的啊.请指教