Hi all,
Some time ago I used TI assembler V4.4.6 to assemble some programs for MSP430FR6989.
Program consisted of ten ".include" files within a main.asm file (like main.asm template given by assembler project).
All .include files defined constants, variables and macros that other ".includes" files would reuse. it worked without problem.
Now with the TIV20.2.5 assembler, in CCS V10.2, this no longer works. :-(
to check it, just include in main.asm 2 files
.include "file1.asm"
.include "file2.asm.
In file1.asm, define:
foo .set 1
in file2.asm, define:
bar .set foo.
"build project" generates the following error: the following symbol are undefined in file2.asm: foo.
hope there is a way to fix this, otherwise the tool is just unusable ...
Thank you for your help
Claude