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