| OLD | NEW |
| 1 /* BFD support for the Intel 860 architecture. | 1 /* BFD support for the Intel 860 architecture. |
| 2 Copyright 1992, 1995, 2000, 2002, 2005, 2007 | 2 Copyright 1992, 1995, 2000, 2002, 2005, 2007 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 Created mostly by substituting "860" for "386" in cpu-i386.c | 4 Created mostly by substituting "860" for "386" in cpu-i386.c |
| 5 Harry Dolan <dolan@ssd.intel.com>, October 1995 | 5 Harry Dolan <dolan@ssd.intel.com>, October 1995 |
| 6 | 6 |
| 7 This file is part of BFD, the Binary File Descriptor library. | 7 This file is part of BFD, the Binary File Descriptor library. |
| 8 | 8 |
| 9 This program is free software; you can redistribute it and/or modify | 9 This program is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 10 it under the terms of the GNU General Public License as published by |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 32, /* 32 bits in an address */ | 31 32, /* 32 bits in an address */ |
| 32 8, /* 8 bits in a byte */ | 32 8, /* 8 bits in a byte */ |
| 33 bfd_arch_i860, /* Architecture */ | 33 bfd_arch_i860, /* Architecture */ |
| 34 0, /* Only one machine */ | 34 0, /* Only one machine */ |
| 35 "i860", /* Architecture name */ | 35 "i860", /* Architecture name */ |
| 36 "i860", /* Printable name */ | 36 "i860", /* Printable name */ |
| 37 3, /* Section alignment exponent */ | 37 3, /* Section alignment exponent */ |
| 38 TRUE, /* Is this the default architecture? */ | 38 TRUE, /* Is this the default architecture? */ |
| 39 bfd_default_compatible, | 39 bfd_default_compatible, |
| 40 bfd_default_scan, | 40 bfd_default_scan, |
| 41 bfd_arch_default_fill, |
| 41 0, /* Next in list */ | 42 0, /* Next in list */ |
| 42 }; | 43 }; |
| OLD | NEW |