diff options
author | Nick Clifton <nickc@redhat.com> | 2005-08-09 08:57:34 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-08-09 08:57:34 +0000 |
commit | b270c666ffec205f602ac88488cc7f9be42fb571 (patch) | |
tree | 5b0efd7e44c088c10f91d7e42ff1007122d5adad /bfd/cpu-msp430.c | |
parent | 269df4b500de0f8f70d7d7b91a18dfd29d70764e (diff) | |
download | gdb-b270c666ffec205f602ac88488cc7f9be42fb571.tar.gz |
Oops - omitted by accident from the previous msp430 patch
Diffstat (limited to 'bfd/cpu-msp430.c')
-rw-r--r-- | bfd/cpu-msp430.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/bfd/cpu-msp430.c b/bfd/cpu-msp430.c index 1ffe72c662f..18e371667d6 100644 --- a/bfd/cpu-msp430.c +++ b/bfd/cpu-msp430.c @@ -64,23 +64,26 @@ static const bfd_arch_info_type arch_info_struct[] = /* msp430x16x. */ N (16, bfd_mach_msp16, "msp:16", FALSE, & arch_info_struct[7]), + /* msp430x21x. */ + N (16, bfd_mach_msp21, "msp:21", FALSE, & arch_info_struct[8]), + /* msp430x31x. */ - N (16, bfd_mach_msp31, "msp:31", FALSE, & arch_info_struct[8]), + N (16, bfd_mach_msp31, "msp:31", FALSE, & arch_info_struct[9]), /* msp430x32x. */ - N (16, bfd_mach_msp32, "msp:32", FALSE, & arch_info_struct[9]), + N (16, bfd_mach_msp32, "msp:32", FALSE, & arch_info_struct[10]), /* msp430x33x. */ - N (16, bfd_mach_msp33, "msp:33", FALSE, & arch_info_struct[10]), + N (16, bfd_mach_msp33, "msp:33", FALSE, & arch_info_struct[11]), /* msp430x41x. */ - N (16, bfd_mach_msp41, "msp:41", FALSE, & arch_info_struct[11]), + N (16, bfd_mach_msp41, "msp:41", FALSE, & arch_info_struct[12]), /* msp430x42x. */ - N (16, bfd_mach_msp42, "msp:42", FALSE, & arch_info_struct[12]), + N (16, bfd_mach_msp42, "msp:42", FALSE, & arch_info_struct[13]), /* msp430x43x. */ - N (16, bfd_mach_msp43, "msp:43", FALSE, & arch_info_struct[13]), + N (16, bfd_mach_msp43, "msp:43", FALSE, & arch_info_struct[14]), /* msp430x44x. */ N (16, bfd_mach_msp43, "msp:44", FALSE, NULL) |