blob: 4c3e3d5735f19108e9c44bbd52ce7f1d1cb497be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* $OpenBSD: te-sequent.h,v 1.2 1998/02/15 18:49:51 niklas Exp $ */
/*
* This file is te-sequent.h and is intended to set up emulation with
* sequent's development tools.
*
*/
#define TE_SEQUENT 1
/* sequent has a "special" header. */
#define H_GET_HEADER_SIZE(h) (128)
#ifdef TC_I386
/* zmagic is 0x22eb */
#define DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE (0x12eb)
#endif /* TC_I386 */
#ifdef TC_NS32K
/* zmagic is 0x10ea */
#define DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE (0x00ea)
#endif /* TC_NS32K */
/* these define interfaces */
#include "obj-format.h"
/*
* Local Variables:
* comment-column: 0
* fill-column: 131
* End:
*/
/* end of te-sequent.h */
|