mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 11:04:18 +08:00
18 lines
304 B
C
18 lines
304 B
C
|
#include "as.h"
|
||
|
#include "emul.h"
|
||
|
|
||
|
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"
|