Other Parts Discussed in Thread: MSP430G2211
o Using CCS5.2 to assemble a program, you may get a message in the "Problems" window that says ""[E0300] The following symbols are undefined:" The message is not followed by a list of the undefined symbols however. To get the list, you need to look in the "CDT Build Console" window. No information is given as to where in the program source the undefined symbols appear, however.
o In an absolute listing, the addresses that may be contained in a header file (eg. "msp430g2211.h") aren't resolved to absolute addresses, although they are resolved if you run Debug.
o All of the example programs for use with the assembler under CCS contain the line " .cdecls C,LIST, "msp430g2211.h" . However, as far as I can see this statement always generates an error WARNING! at line 12: [E1000] error while processing C code in .cdecls directive."
o It seems odd to me that all of the "jump" instructions in the MSP430 assembler syntax can target a label (eg. JMP MAIN or JZ MAIN), while the CALL instruction needs a "#" (eg. CALL #MAIN is correct per the docs, not CALL MAIN).
Most of these quirks may reflect my unfamiliarity with the MSP430 assembler and CCS5.2 set-up options for it, but I thought I would pass them along for information. None of them is without a work-around.