| 23 |
#include "bfd.h" |
#include "bfd.h" |
| 24 |
#include "libbfd.h" |
#include "libbfd.h" |
| 25 |
|
|
| 26 |
const bfd_arch_info_type bfd_x86_64_arch_intel_syntax = |
static const bfd_arch_info_type bfd_x86_64_arch_intel_syntax = |
| 27 |
{ |
{ |
| 28 |
64, /* 64 bits in a word */ |
64, /* 64 bits in a word */ |
| 29 |
64, /* 64 bits in an address */ |
64, /* 64 bits in an address */ |
| 39 |
0 |
0 |
| 40 |
}; |
}; |
| 41 |
|
|
| 42 |
const bfd_arch_info_type bfd_i386_arch_intel_syntax = |
static const bfd_arch_info_type bfd_i386_arch_intel_syntax = |
| 43 |
{ |
{ |
| 44 |
32, /* 32 bits in a word */ |
32, /* 32 bits in a word */ |
| 45 |
32, /* 32 bits in an address */ |
32, /* 32 bits in an address */ |
| 55 |
&bfd_x86_64_arch_intel_syntax |
&bfd_x86_64_arch_intel_syntax |
| 56 |
}; |
}; |
| 57 |
|
|
| 58 |
const bfd_arch_info_type i8086_arch = |
static const bfd_arch_info_type i8086_arch = |
| 59 |
{ |
{ |
| 60 |
32, /* 32 bits in a word */ |
32, /* 32 bits in a word */ |
| 61 |
32, /* 32 bits in an address (well, not really) */ |
32, /* 32 bits in an address (well, not really) */ |
| 71 |
&bfd_i386_arch_intel_syntax |
&bfd_i386_arch_intel_syntax |
| 72 |
}; |
}; |
| 73 |
|
|
| 74 |
const bfd_arch_info_type bfd_x86_64_arch = |
static const bfd_arch_info_type bfd_x86_64_arch = |
| 75 |
{ |
{ |
| 76 |
64, /* 32 bits in a word */ |
64, /* 64 bits in a word */ |
| 77 |
64, /* 32 bits in an address */ |
64, /* 64 bits in an address */ |
| 78 |
8, /* 8 bits in a byte */ |
8, /* 8 bits in a byte */ |
| 79 |
bfd_arch_i386, |
bfd_arch_i386, |
| 80 |
bfd_mach_x86_64, |
bfd_mach_x86_64, |