Dan Miner wrote:
I am having trouble assembling an assembly language source file. Here is a small sample file to demonstrate the issue:;;;;;;;;;;;;;;;;;;;;;; file test.s ;;;;;;;;;;;;;;;
^ small "s"!
> Command line:
> C:\Data> msp430-gcc -mmcu=msp430x149 test.s -o test.o
.s -> pure asm
.S -> asm with C preprocessor
that means that the defines are not processed in your case...
and foo1 foo2 are unknown symbols to the asssember and are assumed
external. so try again with a renamed file.
chris
