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/config/tc-avr.c | |
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/config/tc-avr.c')
-rw-r--r-- | gas/config/tc-avr.c | 2 |
1 files changed, 2 insertions, 0 deletions
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}, |