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.

ccs5.1 build .asm file error!

Hi:

I new a simple c66x test project, a test.asm:

.global  _test

_test:

mv a4, a5

b b3

nop 5

main.c:

extern void test();

void main()

{
test();

when I build the project, error is :

 undefined first referenced
symbol in file
--------- ----------------
test ./src/main.obj
But when i new a c64x+ project, the same with above project, build success.
i want to know if it is the bug of ccs5.1? thanks!