diff options
author | Nick Clifton <nickc@redhat.com> | 2007-10-08 10:33:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-10-08 10:33:27 +0000 |
commit | 922f0baccf93217b92e33eafb8e52c6df255f058 (patch) | |
tree | b5c0900c75dc0dc71603801fcaf5cdc348ed4deb /gas | |
parent | ff5075ca5ca2a554be09abeb274f14dd1e351361 (diff) | |
download | gdb-922f0baccf93217b92e33eafb8e52c6df255f058.zip gdb-922f0baccf93217b92e33eafb8e52c6df255f058.tar.gz gdb-922f0baccf93217b92e33eafb8e52c6df255f058.tar.bz2 |
* config/tc-avr.c (mcu_types): Add new devices: ATtiny43U, ATtiny48.
* doc/c-avr.texi: Document new devices.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-avr.c | 2 | ||||
-rw-r--r-- | gas/doc/c-avr.texi | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 6694d44..1ea8040 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2007-10-08 Eric B. Weddington <eweddington@cso.atmel.com> + + * config/tc-avr.c (mcu_types): Add new devices: ATtiny43U, + ATtiny48. + * doc/c-avr.texi: Document new devices. + 2007-10-08 Nick Clifton <nickc@redhat.com> PR gas/5133 diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c index 6b5a761..06b3fa7 100644 --- a/gas/config/tc-avr.c +++ b/gas/config/tc-avr.c @@ -97,6 +97,8 @@ static struct mcu_type_s mcu_types[] = {"attiny25", AVR_ISA_TINY2, bfd_mach_avr2}, {"attiny45", AVR_ISA_TINY2, bfd_mach_avr2}, {"attiny85", AVR_ISA_TINY2, bfd_mach_avr2}, + {"attiny43u", AVR_ISA_TINY2, bfd_mach_avr2}, + {"attiny48", AVR_ISA_TINY2, bfd_mach_avr2}, {"atmega603", AVR_ISA_M603, bfd_mach_avr3}, /* XXX -> m103 */ {"atmega103", AVR_ISA_M103, bfd_mach_avr3}, {"at43usb320", AVR_ISA_M103, bfd_mach_avr3}, diff --git a/gas/doc/c-avr.texi b/gas/doc/c-avr.texi index 9bf743d..7d94fa9 100644 --- a/gas/doc/c-avr.texi +++ b/gas/doc/c-avr.texi @@ -41,7 +41,7 @@ Instruction set avr2 (default) is for the classic AVR core with up to attiny26, at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515, at90c8534, at90s8535, at86rf401, attiny13, attiny2313, attiny261, attiny461, attiny861, attiny24, attiny44, attiny84, attiny25, -attiny45, attiny85). +attiny45, attiny85, attiny43u, attiny48). Instruction set avr3 is for the classic AVR core with up to 128K program memory space (MCU types: atmega103, atmega603, at43usb320, at43usb355, |