提示是什么意思

2019-07-18 15:17发布

Error:Illegal opcode (XXXX) at pc= 0x0000000c  Illgal opcode at pc =0x0000000c和
   Error:SIMmay not be in stable,Advisable to correct the error before running这样类似的警告
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
16条回答
lizye
1楼-- · 2019-07-19 17:18
int main( )
{
short int * speech_samples; /* Array of speechsamples */
INT32 file_length;/* Number of samples in speech file */
INT32 num_read; /*number of elements read from file */
charpSpeechFilename[100];
   char *argv[]={"dg105.wav"};
FILE *speech_file;
   intPartitionNumber;
FLOAT PredictedMos;
strcpy(pSpeechFilename,argv[0]);
/* open speech file*/
if((speech_file =fopen(pSpeechFilename, "rb")) == NULL )
{
printf("Cannot open file %s ", pSpeechFilename ) ;
exit(-1) ;
}
/* Read speechsamples from file */
fseek(speech_file,0 , SEEK_END) ;
file_length =(ftell(speech_file))/(sizeof(short int)) ;
fseek(speech_file,0 , SEEK_SET) ;
speech_samples =(short int *)calloc(file_length, sizeof(short int)) ;
num_read =fread(speech_samples, sizeof(short int), file_length, speech_file);
printf("num_read=%d",num_read);
   return 0;
}
zhenykun
2楼-- · 2019-07-19 22:55
芯片是哪个型号啊,CCS是哪个版本?
houjiakai
3楼-- · 2019-07-20 01:40
这个错误是哪个编译器的?
houjiakai
4楼-- · 2019-07-20 02:09
CCS的编译器没有这个相关的代码吧。
smilingangel
5楼-- · 2019-07-20 04:08
 精彩回答 2  元偷偷看……
heweibig
6楼-- · 2019-07-20 04:43
应该不是你源代码的问题,可能是哪里设置有误,GEL文件或者CMD文件。。。

一周热门 更多>