diff options
author | Joe Seymour <joe.s@somniumtech.com> | 2016-12-20 14:50:49 +0000 |
---|---|---|
committer | Joe Seymour <joe.s@somniumtech.com> | 2016-12-23 10:19:15 +0000 |
commit | 4eabf3446367832693a1baf145f6ff02baae197b (patch) | |
tree | 9fb55f506f1d108b89c545c84624bf0b8ef3ecb5 /gas | |
parent | 99b5dbf2e78a63ba4be067bfabb3bec1a6406f1c (diff) | |
download | gdb-4eabf3446367832693a1baf145f6ff02baae197b.zip gdb-4eabf3446367832693a1baf145f6ff02baae197b.tar.gz gdb-4eabf3446367832693a1baf145f6ff02baae197b.tar.bz2 |
[msp430] Sync tc-msp430.c with devices.csv
This patch syncs the generated data structure in tc-msp430.c with the
latest version of devices.csv released by TI.
My understanding is that the devices being removed were "invalid spins",
so can't be being used by anyone, and never will be. Current web
searches related to these devices return no relevant results.
Built and tested (no regressions) as follows:
Configured with: --target=msp430-elf --disable-gdb
Test variations:
msp430-sim/-mcpu=msp430
msp430-sim/-mcpu=msp430x
msp430-sim/-mcpu=msp430x/-mlarge/-mdata-region=either/-mcode-region=either
msp430-sim/-mhwmult=none
msp430-sim/-mhwmult=f5series
gas/
* config/tc-msp430.c (msp430_mcu_data): Sync with data from TI's
devices.csv file as of September 2016.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-msp430.c | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e97d00a..d78c57d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2016-12-23 Joe Seymour <joe.s@somniumtech.com> + + * config/tc-msp430.c (msp430_mcu_data): Sync with data from TI's + devices.csv file as of September 2016. + 2016-12-23 Tristan Gingold <gingold@adacore.com> * configure: Regenerate. diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c index d2e9b4e..1ec885b 100644 --- a/gas/config/tc-msp430.c +++ b/gas/config/tc-msp430.c @@ -706,8 +706,8 @@ msp430_set_arch (int option) /* This is a copy of the same data structure found in gcc/config/msp430/msp430.c Keep these two structures in sync. - The data in this structure has been extracted from the devices.csv file - released by TI, updated as of March 2016. */ + The data in this structure has been extracted from version 1.194 of the + devices.csv file released by TI in September 2016. */ struct msp430_mcu_data { @@ -1133,6 +1133,8 @@ msp430_mcu_data [] = { "msp430fg6626",2,8 }, { "msp430fr2032",2,0 }, { "msp430fr2033",2,0 }, + { "msp430fr2110",2,0 }, + { "msp430fr2111",2,0 }, { "msp430fr2310",2,0 }, { "msp430fr2311",2,0 }, { "msp430fr2433",2,8 }, @@ -1173,8 +1175,6 @@ msp430_mcu_data [] = { "msp430fr5858",2,8 }, { "msp430fr5859",2,8 }, { "msp430fr5867",2,8 }, - { "msp430fr5862",2,8 }, - { "msp430fr5864",2,8 }, { "msp430fr58671",2,8 }, { "msp430fr5868",2,8 }, { "msp430fr5869",2,8 }, @@ -1185,8 +1185,6 @@ msp430_mcu_data [] = { "msp430fr5888",2,8 }, { "msp430fr5889",2,8 }, { "msp430fr58891",2,8 }, - { "msp430fr5892",2,8 }, - { "msp430fr5894",2,8 }, { "msp430fr5922",2,8 }, { "msp430fr59221",2,8 }, { "msp430fr5947",2,8 }, @@ -1212,6 +1210,7 @@ msp430_mcu_data [] = { "msp430fr59891",2,8 }, { "msp430fr5992",2,8 }, { "msp430fr5994",2,8 }, + { "msp430fr59941",2,8 }, { "msp430fr5xx_6xxgeneric",2,8 }, { "msp430fr6820",2,8 }, { "msp430fr6822",2,8 }, |