diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2005-06-07 21:07:32 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2005-06-07 21:07:32 +0000 |
commit | de33e640210bb1b3a2835b26b5dc9e7e8ace93e2 (patch) | |
tree | cee3b28565a64bf6ba8dea80fc4a479169676a09 /bfd/archures.c | |
parent | 0bf60745767d2465c81ee57ae7705a62d6d8fafe (diff) | |
download | binutils-gdb-de33e640210bb1b3a2835b26b5dc9e7e8ace93e2.tar.gz |
* Makefile.am (ALL_MACHINES): Add ms1 support.
(ALL_MACHINES_CFILES): Same.
(BFD32_BACKENDS): Same.
(BFD32_BACKENDS_CFILES): Same.
* Makefile.in: Regenerate.
* archures.c (bfd_architecture): Add ms1 entries.
Externalize bfd_ms1_arch.
(bfd_archures_list): Add bfd_ms1_arch.
* bfd-in2.h: Regenerate.
* cpu-ms1.c: New file.
* elf32-ms1.c: New file.
* targets.c: Define extern of bfd_elf32_ms1_vec.
Add bfd_elf32_ms1_vec to _bfd_target_vector.
* configure.in: Add bfd_elf32_ms1_vec case.
* configure: Regenerate.
* config.bfd: Add ms1-*-elf to table.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index 0e589343d43..e84ccde64a6 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -316,6 +316,9 @@ DESCRIPTION . bfd_arch_iq2000, {* Vitesse IQ2000. *} .#define bfd_mach_iq2000 1 .#define bfd_mach_iq10 2 +. bfd_arch_ms1, +.#define bfd_mach_ms1 1 +.#define bfd_mach_mrisc2 2 . bfd_arch_pj, . bfd_arch_avr, {* Atmel AVR microcontrollers. *} .#define bfd_mach_avr1 1 @@ -453,6 +456,7 @@ extern const bfd_arch_info_type bfd_w65_arch; extern const bfd_arch_info_type bfd_xstormy16_arch; extern const bfd_arch_info_type bfd_xtensa_arch; extern const bfd_arch_info_type bfd_z8k_arch; +extern const bfd_arch_info_type bfd_ms1_arch; static const bfd_arch_info_type * const bfd_archures_list[] = { @@ -493,6 +497,7 @@ static const bfd_arch_info_type * const bfd_archures_list[] = &bfd_mmix_arch, &bfd_mn10200_arch, &bfd_mn10300_arch, + &bfd_ms1_arch, &bfd_msp430_arch, &bfd_ns32k_arch, &bfd_openrisc_arch, |