我的主程序如下
#include <stdio.h>
#include \"tms320lf2407.h\"
interrupt void nothing() //哑中断子程序
{
return;
}
void main()
{
/* write a string to stdout */
puts(\"hello world!\\n\":'(;
}
错误信息如下
>> cannot allocate .sysmem in B1_DARAM (page 1)
>> errors in input - ./Debug/test.out not built
请帮我看下如何改正,是什么错误 |