Re: Question about MSP430 assembler compiler
Eugene writes: > Loop: xor.b #0b0101,&P1OUT gas/config/tc-msp430.h defines NUMBERS_WITH_SUFFIX, so this is the number 0 with trailing garbage (which isn't properly diagnosed). Use 0101B instead. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54
Question about MSP430 assembler compiler
The program code in assembly language: ... Loop: xor.b #0b0101,&P1OUT call #Wait jmpLoop ... After compilation, see: Loop: xor.b #0b0101,&P1OUT c018: c2 e3 21 00 xor.b #0, &0x0021 ;r3 As