diff options
author | Nick Clifton <nickc@redhat.com> | 2001-03-06 20:15:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-03-06 20:15:27 +0000 |
commit | 3cac17aec80bb16c453169b0588bcfb6441145ba (patch) | |
tree | 60c06107eacd24d1ef197664a056b5c0b3e1a8e3 /bfd/archures.c | |
parent | 9d29e1b3e24ae5406ebe5890e3a4ff0d38d7aa72 (diff) | |
download | gdb-3cac17aec80bb16c453169b0588bcfb6441145ba.zip gdb-3cac17aec80bb16c453169b0588bcfb6441145ba.tar.gz gdb-3cac17aec80bb16c453169b0588bcfb6441145ba.tar.bz2 |
Rest of the changes for Coldfire V4.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index 7ca1c06..7185d5a 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -1,5 +1,5 @@ /* BFD library support routines for architectures. - Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000 + Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000, 2001 Free Software Foundation, Inc. Hacked by John Gilmore and Steve Chamberlain of Cygnus Support. @@ -79,6 +79,10 @@ DESCRIPTION .#define bfd_mach_m68040 6 .#define bfd_mach_m68060 7 .#define bfd_mach_cpu32 8 +.#define bfd_mach_mcf5200 9 +.#define bfd_mach_mcf5206e 10 +.#define bfd_mach_mcf5307 11 +.#define bfd_mach_mcf5407 12 . bfd_arch_vax, {* DEC Vax *} . bfd_arch_i960, {* Intel 960 *} . {* The order of the following is important. @@ -856,6 +860,22 @@ bfd_default_scan (info, string) arch = bfd_arch_m68k; number = bfd_mach_cpu32; break; + case 5200: + arch = bfd_arch_m68k; + number = bfd_mach_mcf5200; + break; + case 5206: + arch = bfd_arch_m68k; + number = bfd_mach_mcf5206e; + break; + case 5307: + arch = bfd_arch_m68k; + number = bfd_mach_mcf5307; + break; + case 5407: + arch = bfd_arch_m68k; + number = bfd_mach_mcf5407; + break; case 32000: arch = bfd_arch_we32k; |