2007-07-03 Markus Deuling <deuling@de.ibm.com>
[deliverable/binutils-gdb.git] / bfd / cpu-i386.c
CommitLineData
252b5132 1/* BFD support for the Intel 386 architecture.
3db64b00 2 Copyright 1992, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2004, 2007
7898deda 3 Free Software Foundation, Inc.
252b5132
RH
4
5This file is part of BFD, the Binary File Descriptor library.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
3e110533 19Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
252b5132
RH
23#include "libbfd.h"
24
8d88c4ca
NC
25const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
26{
27 64, /* 64 bits in a word */
28 64, /* 64 bits in an address */
29 8, /* 8 bits in a byte */
30 bfd_arch_i386,
31 bfd_mach_x86_64_intel_syntax,
beb43bb9
JH
32 "i386:intel",
33 "i386:x86-64:intel",
8d88c4ca 34 3,
1abc8597
AM
35 FALSE,
36 bfd_default_compatible,
37 bfd_default_scan,
38 0
39};
40
41const bfd_arch_info_type bfd_i386_arch_intel_syntax =
42{
43 32, /* 32 bits in a word */
44 32, /* 32 bits in an address */
45 8, /* 8 bits in a byte */
46 bfd_arch_i386,
47 bfd_mach_i386_i386_intel_syntax,
48 "i386:intel",
49 "i386:intel",
50 3,
b34976b6 51 TRUE,
b74fa2cd 52 bfd_default_compatible,
1abc8597
AM
53 bfd_default_scan,
54 &bfd_x86_64_arch_intel_syntax
8d88c4ca 55};
1abc8597
AM
56
57const bfd_arch_info_type i8086_arch =
252b5132
RH
58{
59 32, /* 32 bits in a word */
60 32, /* 32 bits in an address (well, not really) */
61 8, /* 8 bits in a byte */
62 bfd_arch_i386,
63 bfd_mach_i386_i8086,
64 "i8086",
65 "i8086",
66 3,
b34976b6 67 FALSE,
b74fa2cd 68 bfd_default_compatible,
1abc8597
AM
69 bfd_default_scan,
70 &bfd_i386_arch_intel_syntax
8d88c4ca
NC
71};
72
73const bfd_arch_info_type bfd_x86_64_arch =
74{
75 64, /* 32 bits in a word */
76 64, /* 32 bits in an address */
77 8, /* 8 bits in a byte */
78 bfd_arch_i386,
79 bfd_mach_x86_64,
beb43bb9
JH
80 "i386",
81 "i386:x86-64",
8d88c4ca 82 3,
1abc8597 83 FALSE,
b74fa2cd 84 bfd_default_compatible,
1abc8597
AM
85 bfd_default_scan,
86 &i8086_arch
252b5132
RH
87};
88
89const bfd_arch_info_type bfd_i386_arch =
90{
91 32, /* 32 bits in a word */
92 32, /* 32 bits in an address */
93 8, /* 8 bits in a byte */
94 bfd_arch_i386,
95 bfd_mach_i386_i386,
96 "i386",
97 "i386",
98 3,
b34976b6 99 TRUE,
b74fa2cd 100 bfd_default_compatible,
1abc8597 101 bfd_default_scan,
3fde5a36 102 &bfd_x86_64_arch
252b5132 103};
This page took 0.374605 seconds and 4 git commands to generate.