msdos .exe file support from bryan ford
[platform/upstream/binutils.git] / bfd / cpu-i386.c
1 #include <sysdep.h>
2 #include <bfd.h>
3 #include "libbfd.h"
4
5
6
7 static bfd_arch_info_struct_type arch_info_struct = 
8   {
9     32, /* 32 bits in a word */
10     32, /* 32 bits in an address */
11     8,  /* 8 bits in a byte */
12     bfd_arch_i386,
13     0,  /* only 1 machine */
14     "i386",
15     "i386",
16     true, /* the one and only */
17     bfd_default_compatible, 
18     bfd_default_scan ,
19     0,
20     0,
21   };
22
23
24
25
26 void DEFUN_VOID(bfd_i386_arch)
27 {
28   bfd_arch_linkin(&arch_info_struct);
29 }
30
31
32