]>
Commit | Line | Data |
---|---|---|
e3c01e92 SG |
1 | #include "bfd.h" |
2 | #include "sysdep.h" | |
3 | #include "libbfd.h" | |
4 | ||
5 | static bfd_arch_info_type arch_info_struct = | |
6 | { | |
7 | 32, /* 32 bits in a word */ | |
8 | 32, /* 32 bits in an address */ | |
9 | 8, /* 8 bits in a byte */ | |
10 | bfd_arch_hppa, | |
11 | 0, /* only 1 machine */ | |
12 | "hppa", | |
13 | "hppa", | |
14 | 3, | |
15 | true, /* the one and only */ | |
16 | bfd_default_compatible, | |
17 | bfd_default_scan , | |
18 | 0, | |
19 | 0, | |
20 | }; | |
21 | ||
22 | void DEFUN_VOID(bfd_hppa_arch) | |
23 | { | |
24 | bfd_arch_linkin(&arch_info_struct); | |
25 | } |