aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorEric B. Weddington <eric.weddington@atmel.com>2008-01-23 17:36:23 +0000
committerEric B. Weddington <eric.weddington@atmel.com>2008-01-23 17:36:23 +0000
commit2b1ed17bea76bc848e0b134feb16e7549b0a5767 (patch)
tree62bf2a7d2e34cb85f6bd603ce3dcc75ac0b2c89b /gas
parentf9dd0b02e897f9e362bbd853ee2f2777a5404ab5 (diff)
downloadgdb-2b1ed17bea76bc848e0b134feb16e7549b0a5767.zip
gdb-2b1ed17bea76bc848e0b134feb16e7549b0a5767.tar.gz
gdb-2b1ed17bea76bc848e0b134feb16e7549b0a5767.tar.bz2
/gas:
2008-01-23 Eric B. Weddington <eric.weddington@atmel.com> * config/tc-avr.c (mcu_types): Change opcode set for at86rf401. /include: 2008-01-23 Eric B. Weddington <eric.weddington@atmel.com> * opcode/avr.h (AVR_ISA_RF401): Add new opcode set for at86rf401.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-avr.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index dc7c744..2d61c1d 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-23 Eric B. Weddington <eric.weddington@atmel.com>
+
+ * config/tc-avr.c (mcu_types): Change opcode set for at86rf401.
+
2008-01-23 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (md_show_usage): Show more processors for
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c
index 0beec90..1e6f7e6 100644
--- a/gas/config/tc-avr.c
+++ b/gas/config/tc-avr.c
@@ -84,7 +84,7 @@ static struct mcu_type_s mcu_types[] =
{"at90s8515", AVR_ISA_2xxx, bfd_mach_avr2},
{"at90s8535", AVR_ISA_2xxx, bfd_mach_avr2},
{"at90c8534", AVR_ISA_2xxx, bfd_mach_avr2},
- {"at86rf401", AVR_ISA_2xxx, bfd_mach_avr2},
+ {"at86rf401", AVR_ISA_RF401, bfd_mach_avr2},
{"attiny13", AVR_ISA_TINY2, bfd_mach_avr2},
{"attiny2313", AVR_ISA_TINY2, bfd_mach_avr2},
{"attiny261", AVR_ISA_TINY2, bfd_mach_avr2},