xref: /openbsd/sys/arch/m88k/include/exec.h (revision 043da685)
1 /*	$OpenBSD: exec.h,v 1.7 2017/02/08 05:09:25 guenther Exp $ */
2 #ifndef _M88K_EXEC_H_
3 #define _M88K_EXEC_H_
4 
5 #define __LDPGSZ        4096
6 
7 #define ARCH_ELFSIZE		32
8 
9 #define ELF_TARG_CLASS		ELFCLASS32
10 #define ELF_TARG_DATA		ELFDATA2MSB
11 #define ELF_TARG_MACH		EM_88K
12 
13 /* Processor specific dynamic tag values.  */
14 #define	DT_88K_ADDRBASE	0x70000001
15 #define	DT_88K_PLTSTART	0x70000002
16 #define	DT_88K_PLTEND	0x70000003
17 #define	DT_88K_TDESC	0x70000004
18 
19 #define	DT_PROCNUM	(DT_88K_TDESC + 1 - DT_LOPROC)
20 
21 #endif /* _M88K_EXEC_H_ */
22