aboutsummaryrefslogtreecommitdiff
path: root/bfd/cpu-i386.c
blob: 2bafe58d8d91d450f77b04a232f55c78f6495178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <sysdep.h>
#include <bfd.h>
#include "libbfd.h"



static bfd_arch_info_struct_type arch_info_struct = 
  {
    32,	/* 32 bits in a word */
    32,	/* 32 bits in an address */
    8,	/* 8 bits in a byte */
    bfd_arch_i386,
    0,	/* only 1 machine */
    "i386",
    "i386",
    true, /* the one and only */
    bfd_default_compatible, 
    bfd_default_scan ,
    0,
    0,
  };




void DEFUN_VOID(bfd_i386_arch)
{
  bfd_arch_linkin(&arch_info_struct);
}