diff options
author | Nick Clifton <nickc@redhat.com> | 2005-08-08 17:08:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-08-08 17:08:04 +0000 |
commit | 44c86e8c6da0c80ea8a55718bdab34e05e065abd (patch) | |
tree | 7c3abdab1d7cbb2947448cfb4a3ddeee31ec0c0a /gas/config/tc-msp430.c | |
parent | 3c2e36dc6f7dc9c54ae4e7fa50b46cfe5d1ec98b (diff) | |
download | gdb-44c86e8c6da0c80ea8a55718bdab34e05e065abd.zip gdb-44c86e8c6da0c80ea8a55718bdab34e05e065abd.tar.gz gdb-44c86e8c6da0c80ea8a55718bdab34e05e065abd.tar.bz2 |
Add support for msp430x21xx variants
Diffstat (limited to 'gas/config/tc-msp430.c')
-rw-r--r-- | gas/config/tc-msp430.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c index 3f2ba84..9e5c533 100644 --- a/gas/config/tc-msp430.c +++ b/gas/config/tc-msp430.c @@ -205,6 +205,7 @@ struct mcu_type_s #define MSP430_ISA_14 14 #define MSP430_ISA_15 15 #define MSP430_ISA_16 16 +#define MSP430_ISA_21 21 #define MSP430_ISA_31 31 #define MSP430_ISA_32 32 #define MSP430_ISA_33 33 @@ -251,6 +252,11 @@ static struct mcu_type_s mcu_types[] = {"msp430x1611", MSP430_ISA_16, bfd_mach_msp16}, {"msp430x1612", MSP430_ISA_16, bfd_mach_msp16}, + {"msp430x2101", MSP430_ISA_21, bfd_mach_msp21}, + {"msp430x2111", MSP430_ISA_21, bfd_mach_msp21}, + {"msp430x2121", MSP430_ISA_21, bfd_mach_msp21}, + {"msp430x2131", MSP430_ISA_21, bfd_mach_msp21}, + {"msp430x311", MSP430_ISA_31, bfd_mach_msp31}, {"msp430x312", MSP430_ISA_31, bfd_mach_msp31}, {"msp430x313", MSP430_ISA_31, bfd_mach_msp31}, |