summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric B. Weddington <eric.weddington@atmel.com>2008-01-16 17:59:07 +0000
committerEric B. Weddington <eric.weddington@atmel.com>2008-01-16 17:59:07 +0000
commit844af47c08347cf006f8065e40059fce323ecf9f (patch)
tree2e5649269cb82f49a0c04ccc7ab5c8ee4eeff7bd /include
parent6e9c7cdd09f765b76dedaf2b6f7280f9db0e23d8 (diff)
downloadbinutils-redhat-844af47c08347cf006f8065e40059fce323ecf9f.tar.gz
/gas:
2008-01-03 Eric B. Weddington <eric.weddington@atmel.com> * config/tc-avr.c (mcu_types): Change opcode set for avr3, at90usb82, at90usb162. * doc/c-avr.texi: Change architecture grouping for at90usb82, at90usb162. These changes support the new avr35 architecture group in gcc. /include: 2008-01-03 Eric B. Weddington <eric.weddington@atmel.com> * opcode/avr.h (AVR_ISA_USB162): Add new opcode set. (AVR_ISA_AVR3): Likewise.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/opcode/avr.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index c856121636..98fea92b9e 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-03 Eric B. Weddington <eric.weddington@atmel.com>
+
+ * opcode/avr.h (AVR_ISA_USB162): Add new opcode set.
+ (AVR_ISA_AVR3): Likewise.
+
2007-11-17 Thiemo Seufer <ths@mips.com>
* elf/mips.h (Tag_GNU_MIPS_ABI_FP): Mention -mips32r2 -mfp64 variant
diff --git a/include/opcode/avr.h b/include/opcode/avr.h
index 55bb161034..50a41a0f77 100644
--- a/include/opcode/avr.h
+++ b/include/opcode/avr.h
@@ -40,6 +40,10 @@
AVR_ISA_LPMX | AVR_ISA_SPM)
#define AVR_ISA_M603 (AVR_ISA_2xxx | AVR_ISA_MEGA)
#define AVR_ISA_M103 (AVR_ISA_M603 | AVR_ISA_ELPM)
+#define AVR_ISA_USB162 (AVR_ISA_M603 | AVR_ISA_MOVW | \
+ AVR_ISA_LPMX | AVR_ISA_SPM)
+#define AVR_ISA_AVR3 (AVR_ISA_M603 | AVR_ISA_MOVW | \
+ AVR_ISA_LPMX | AVR_ISA_SPM | AVR_ISA_ELPM)
#define AVR_ISA_M161 (AVR_ISA_M603 | AVR_ISA_MUL | AVR_ISA_MOVW | \
AVR_ISA_LPMX | AVR_ISA_SPM)
#define AVR_ISA_94K (AVR_ISA_M603 | AVR_ISA_MUL | AVR_ISA_MOVW | AVR_ISA_LPMX)