Vincent Trouilliez <vincent.trouill...@modulonet.fr> wrote:

> lcd.c:96: error: »asm« undeclared (first use in this function)

That's because you are using a -std setting the prevents GCC from
using its extensions by a name ("asm") that is in the application name
space, like -std=c99.  Either use -std=gnu99, or (as you already did)
use the implementation namespace counterpart __asm__.

-- 
cheers, J"org               .-.-.   --... ...--   -.. .  DL8DTL

http://www.sax.de/~joerg/                        NIC: JW11-RIPE
Never trust an operating system you don't have sources for. ;-)


_______________________________________________
AVR-GCC-list mailing list
AVR-GCC-list@nongnu.org
http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Reply via email to