Needing to to increment R8 without affecting the carry flag, this line was coded.
MOV.W @R8+, R3
No error or warning was generated by the assembler (CCS) . When executed on an msp430f449, auto-increment did not happen. Changing to this worked.
MOV.W @R8+, R12
Using R3 (CG2) as the destination seams to prevent the incrementing. Can anyone shed some light on this behavior?
R. Harkins