[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-gcc-list] avr-gcc problems with ver 3.0 prerelease for attiny11
From: |
Marek Michalkiewicz |
Subject: |
Re: [avr-gcc-list] avr-gcc problems with ver 3.0 prerelease for attiny11,12,15 |
Date: |
Thu, 21 Jun 2001 19:24:33 +0200 (CEST) |
> cc1: MCU `attiny15' not supported
>
> Are there any known problems to it ?
Yes. Tell Atmel to make a new ATtiny15 for you with the complete AVR
instruction set and some RAM ;). Ideally, ask them for some more flash
too while you are at it ;).
In the meantime, you can at least still use the C preprocessor for
your assembler source:
avr-gcc -c -mmcu=attiny15 -x assembler-with-cpp test.S -o test.o
You can #include <iotn15.h> to use I/O register defines from avr-libc,
etc. Sorry, no C - AT90S1200, ATtiny1x and ATtiny28 are designed for
very simple applications, written completely in assembler.
Marek