blob: 1d859be9fea6a39ebfcac49aed7e216f1e86cbcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $NetBSD: elf_machdep.h,v 1.5 2002/01/28 22:15:55 thorpej Exp $ */
#ifndef _MACHINE_ELF_MACHDEP_H_
#define _MACHINE_ELF_MACHDEP_H_
#include <m68k/elf_machdep.h>
/*
* The 68010 can't execute binaries for 68020-and-up.
*/
#define ELF32_EHDR_FLAGS_OK(eh) \
(((eh)->e_flags & EF_M68000) != 0)
#endif
|