8070f29df5
* working reloc lookup support * better support for creation of COFF files from scratch * misc doc changes, macro tweaks, "const" additions, typo fixes, etc. * one or two ugly kludges that should get cleaned up (but what's one or two more, in BFD?) See ChangeLog for details.
25 lines
455 B
C
25 lines
455 B
C
#include "bfd.h"
|
|
#include "sysdep.h"
|
|
#include "libbfd.h"
|
|
|
|
static bfd_arch_info_type arch_info_struct =
|
|
{
|
|
32, /* 32 bits in a word */
|
|
32, /* 32 bits in an address */
|
|
8, /* 8 bits in a byte */
|
|
bfd_arch_a29k,
|
|
0, /* only 1 machine */
|
|
"a29k",
|
|
"a29k",
|
|
4,
|
|
true, /* the one and only */
|
|
bfd_default_compatible,
|
|
bfd_default_scan ,
|
|
0,
|
|
};
|
|
|
|
void DEFUN_VOID(bfd_a29k_arch)
|
|
{
|
|
bfd_arch_linkin(&arch_info_struct);
|
|
}
|