blob: 94da6aa03ae554773e3d43208ed6d42217c9cf9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $OpenBSD: exec.h,v 1.6 2015/08/29 01:58:39 guenther Exp $ */
#ifndef _M88K_EXEC_H_
#define _M88K_EXEC_H_
#define __LDPGSZ 4096
#define ARCH_ELFSIZE 32
#define ELF_TARG_CLASS ELFCLASS32
#define ELF_TARG_DATA ELFDATA2MSB
#define ELF_TARG_MACH EM_88K
#define _KERN_DO_ELF
/* Processor specific dynamic tag values. */
#define DT_88K_ADDRBASE 0x70000001
#define DT_88K_PLTSTART 0x70000002
#define DT_88K_PLTEND 0x70000003
#define DT_88K_TDESC 0x70000004
#define DT_PROCNUM (DT_88K_TDESC + 1 - DT_LOPROC)
#endif /* _M88K_EXEC_H_ */
|