428
|
1 /* machine description file for Elxsi machine (running enix).
|
|
2 Copyright (C) 1986, 1992 Free Software Foundation, Inc.
|
|
3 Adapted by John Salmon
|
|
4
|
|
5 This file is part of GNU Emacs.
|
|
6
|
|
7 GNU Emacs is free software; you can redistribute it and/or modify
|
|
8 it under the terms of the GNU General Public License as published by
|
|
9 the Free Software Foundation; either version 2, or (at your option)
|
|
10 any later version.
|
|
11
|
|
12 GNU Emacs is distributed in the hope that it will be useful,
|
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 GNU General Public License for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: FSF 19.31. */
|
|
23
|
|
24 /* The following line tells the configuration script what sort of
|
|
25 operating system this machine is likely to run.
|
|
26 USUAL-OPSYS="usg5-2" */
|
|
27
|
|
28 /* This file was modified by Matt Crawford <matt@tank.uchicago.edu>
|
|
29 to work under Elxsi's 12.0 release of BSD unix. */
|
|
30
|
|
31 /* Now define a symbol for the cpu type, if your compiler
|
|
32 does not define it automatically:
|
|
33 vax, m68000, ns16000, pyramid, orion, tahoe and APOLLO
|
|
34 are the ones defined so far. */
|
|
35
|
|
36 #ifndef elxsi
|
|
37 #define elxsi
|
|
38 #endif
|
|
39
|
|
40 /* Name of kernel load average variable */
|
|
41
|
|
42 #undef LDAV_SYMBOL
|
|
43 #define LDAV_SYMBOL "avenrun"
|
|
44
|
|
45 /* Data type of load average, as read out of kmem. */
|
|
46
|
|
47 #define LOAD_AVE_TYPE double
|
|
48
|
|
49 /* Convert that into an integer that is 100 for a load average of 1.0 */
|
|
50
|
|
51 #define LOAD_AVE_CVT(x) (int) ((x) * 100.0)
|
|
52
|
|
53 /* Define NO_REMAP if memory segmentation makes it not work well
|
|
54 to change the boundary between the text section and data section
|
|
55 when Emacs is dumped. If you define this, the preloaded Lisp
|
|
56 code will not be sharable; but that's better than failing completely. */
|
|
57 /*#define NO_REMAP*/
|
|
58
|
|
59 /* This is a guess for an alternate solution to whatever
|
|
60 problem motivated defining _sobuf in sysdep,c with extern char *_sobuf. */
|
|
61 #define _sobuf xsobuf
|
|
62
|
|
63 /* Address of start of text segment as loaded. */
|
|
64
|
|
65 #define TEXT_START 0x800
|
|
66
|
|
67 /* Tell crt0.c not to define environ. */
|
|
68
|
|
69 #define DONT_NEED_ENVIRON
|
|
70
|
|
71 /* The elxsi has no debugger, so might as well optimize instead
|
|
72 of trying to make a symbol table. */
|
|
73
|
|
74 #define C_DEBUG_SWITCH "-O"
|
|
75
|
|
76 /* Elxsi uses COFF under both Sys V and BSD environments */
|
|
77
|
|
78 #define COFF
|
|
79
|
|
80 #define ADJUST_EXEC_HEADER {\
|
|
81 extern int _init_brk;\
|
|
82 _init_brk = bss_start;\
|
|
83 }
|