blob: e1826a14882d2f007e88a29e67eaf19d151c4b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "as.h"
#include "emul.h"
static const char *
criself_bfd_name ()
{
abort ();
return NULL;
}
#define emul_bfd_name criself_bfd_name
#define emul_format &elf_format_ops
#define emul_name "criself"
#define emul_struct_name criself
#define emul_default_endian 0
#include "emul-target.h"
|