This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F280260的CMD文件中 .test 问题

   TMS320F280260的   PRAML0  的空间有两块,0x008000到0x008400  和0x3f8000到0x3f8400这两个空间。

  .test的空间设定如下:

   PRAML0     : origin = 0x008000, length = 0x000400

   .text            : > PRAML0,    PAGE = 0

是不是在仿真时程序空间必须小于0x000400;不然就出错了?

  如果是这样,那怎么样才能扩大仿真用的RAM,在怎么样采样把两个空间联合使用?

谢谢!

  • .text : > PRAML0|PRAML1, PAGE = 0
  • PRAML0 : origin = 0x008000, length = 0x000400
    PRAML1 : origin = 0x3f8000, length = 0x000400
    .
    .
    .
    .text : > PRAML0|PRAML1, PAGE = 0
    我试了一下,.text不能大于 PRAML0或PRAML1中的一个,相当于还是只是使用了一个空间,是不是我还有什么地方设置有问题?
  • PRAML0 : origin = 0x008000, length = 0x000400
    PRAML1 : origin = 0x3f8000, length = 0x000400
    .
    .
    .
    .text : > PRAML0|PRAML1, PAGE = 0和.text : >> PRAML0|PRAML1, PAGE = 0 这两个语句有什么区别?
    谢谢!