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.

Linear Assembly



Hello. Does C5505 DSP support something like linear assembly language? Using C6713 I could create assembly functions with arguments list called from C source file. These files have extension *.sa, and looks like that:

 _twosum .cproc a,b,c,d
.reg sum,sum1,sum2
ZERO sum
ADDSP .L1 a,b,sum1
|| ADDSP .L2 c,d,sum2
ADDSP sum1,sum2,sum
.return sum
.endproc

 For C5505 it seems that compiler can't recognize the construction (unknown mnemonics for cproc, endproc). So i ask - am I doing something wrong or there is no linear assembly for C5505 at all? 

Regards .