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!