Part Number: TMS320F28335
Tool/software: TI C/C++ Compiler
Dear team,
I am using C/C++ and Assembly mixing programming with CCS 6.1. I defined variables in .asm file. These variables were not shared with C code.
But the variables declared in the assembly header file failed to compile normally into the Map file.
_TEST_1 .SET 140H _TEST_2 .SET 141H _TEST_3 .SET 142H _TEST_4 .SET 143H _TEST_5 .SET 144H _TEST_6 .SET 145H _TEST_7 .SET 146H _TEST_8 .SET 147H _TEST_9 .SET 148H _TEST_10 .SET 149H
ps:
If i use the .global declaration and the global variable declared externally in the C language header file, the declared variable and the corresponding address can be found in the Map file.