2000-07-20 19:45:28 +02:00
|
|
|
#include "as.h"
|
|
|
|
#include "emul.h"
|
|
|
|
|
2002-12-12 23:46:47 +01:00
|
|
|
static const char *crisaout_bfd_name PARAMS ((void));
|
|
|
|
|
2000-07-20 19:45:28 +02:00
|
|
|
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"
|