2000-01-26 23:48:31 +01:00
|
|
|
#include "as.h"
|
|
|
|
#include "emul.h"
|
|
|
|
|
2001-08-09 16:42:07 +02:00
|
|
|
static const char *i386aout_bfd_name PARAMS ((void));
|
|
|
|
|
2000-01-26 23:48:31 +01:00
|
|
|
static const char *
|
|
|
|
i386aout_bfd_name ()
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define emul_bfd_name i386aout_bfd_name
|
|
|
|
#define emul_format &aout_format_ops
|
|
|
|
|
|
|
|
#define emul_name "i386aout"
|
|
|
|
#define emul_struct_name i386aout
|
|
|
|
#define emul_default_endian 0
|
|
|
|
#include "emul-target.h"
|