| OLD | NEW |
| 1 /* BFD support for the Morpho Technologies MT processor. | 1 /* BFD support for the Morpho Technologies MT processor. |
| 2 Copyright (C) 2001, 2002, 2005, 2007 Free Software Foundation, Inc. | 2 Copyright (C) 2001, 2002, 2005, 2007 Free Software Foundation, Inc. |
| 3 | 3 |
| 4 This file is part of BFD, the Binary File Descriptor library. | 4 This file is part of BFD, the Binary File Descriptor library. |
| 5 | 5 |
| 6 This program is free software; you can redistribute it and/or modify | 6 This program is free software; you can redistribute it and/or modify |
| 7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation; either version 3 of the License, or | 8 the Free Software Foundation; either version 3 of the License, or |
| 9 (at your option) any later version. | 9 (at your option) any later version. |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 32, /* Bits per address. */ | 29 32, /* Bits per address. */ |
| 30 8, /* Bits per byte. */ | 30 8, /* Bits per byte. */ |
| 31 bfd_arch_mt, /* Architecture. */ | 31 bfd_arch_mt, /* Architecture. */ |
| 32 bfd_mach_mrisc2, /* Machine. */ | 32 bfd_mach_mrisc2, /* Machine. */ |
| 33 "mt", /* Architecture name. */ | 33 "mt", /* Architecture name. */ |
| 34 "ms1-003", /* Printable name. */ | 34 "ms1-003", /* Printable name. */ |
| 35 1, /* Section align power. */ | 35 1, /* Section align power. */ |
| 36 FALSE, /* The default ? */ | 36 FALSE, /* The default ? */ |
| 37 bfd_default_compatible, /* Architecture comparison fn. */ | 37 bfd_default_compatible, /* Architecture comparison fn. */ |
| 38 bfd_default_scan, /* String to architecture convert fn. */ | 38 bfd_default_scan, /* String to architecture convert fn. */ |
| 39 bfd_arch_default_fill, /* Default fill. */ |
| 39 &arch_info_struct[1] /* Next in list. */ | 40 &arch_info_struct[1] /* Next in list. */ |
| 40 }, | 41 }, |
| 41 { | 42 { |
| 42 32, /* Bits per word - not really true. */ | 43 32, /* Bits per word - not really true. */ |
| 43 32, /* Bits per address. */ | 44 32, /* Bits per address. */ |
| 44 8, /* Bits per byte. */ | 45 8, /* Bits per byte. */ |
| 45 bfd_arch_mt, /* Architecture. */ | 46 bfd_arch_mt, /* Architecture. */ |
| 46 bfd_mach_ms2, /* Machine. */ | 47 bfd_mach_ms2, /* Machine. */ |
| 47 "mt", /* Architecture name. */ | 48 "mt", /* Architecture name. */ |
| 48 "ms2", /* Printable name. */ | 49 "ms2", /* Printable name. */ |
| 49 1, /* Section align power. */ | 50 1, /* Section align power. */ |
| 50 FALSE, /* The default ? */ | 51 FALSE, /* The default ? */ |
| 51 bfd_default_compatible, /* Architecture comparison fn. */ | 52 bfd_default_compatible, /* Architecture comparison fn. */ |
| 52 bfd_default_scan, /* String to architecture convert fn. */ | 53 bfd_default_scan, /* String to architecture convert fn. */ |
| 54 bfd_arch_default_fill, /* Default fill. */ |
| 53 NULL /* Next in list. */ | 55 NULL /* Next in list. */ |
| 54 }, | 56 }, |
| 55 }; | 57 }; |
| 56 | 58 |
| 57 const bfd_arch_info_type bfd_mt_arch = | 59 const bfd_arch_info_type bfd_mt_arch = |
| 58 { | 60 { |
| 59 32, /* Bits per word - not really true. */ | 61 32, /* Bits per word - not really true. */ |
| 60 32, /* Bits per address. */ | 62 32, /* Bits per address. */ |
| 61 8, /* Bits per byte. */ | 63 8, /* Bits per byte. */ |
| 62 bfd_arch_mt, /* Architecture. */ | 64 bfd_arch_mt, /* Architecture. */ |
| 63 bfd_mach_ms1, /* Machine. */ | 65 bfd_mach_ms1, /* Machine. */ |
| 64 "mt", /* Architecture name. */ | 66 "mt", /* Architecture name. */ |
| 65 "ms1", /* Printable name. */ | 67 "ms1", /* Printable name. */ |
| 66 1, /* Section align power. */ | 68 1, /* Section align power. */ |
| 67 TRUE, /* The default ? */ | 69 TRUE, /* The default ? */ |
| 68 bfd_default_compatible, /* Architecture comparison fn. */ | 70 bfd_default_compatible, /* Architecture comparison fn. */ |
| 69 bfd_default_scan, /* String to architecture convert fn. */ | 71 bfd_default_scan, /* String to architecture convert fn. */ |
| 72 bfd_arch_default_fill, /* Default fill. */ |
| 70 &arch_info_struct[0] /* Next in list. */ | 73 &arch_info_struct[0] /* Next in list. */ |
| 71 }; | 74 }; |
| 72 | 75 |
| OLD | NEW |