This commit was generated by cvs2svn to compensate for changes in r1383,
[chise/xemacs-chise.git.1] / src / m / elxsi.h
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 CANNOT_DUMP on machines where unexec does not work.
54    Then the function dump-emacs will not be defined
55    and temacs will do (load "loadup") automatically unless told otherwise.
56
57    Earlier versions couldn't dump.
58    Changes for 12.0 release are in 19.1.
59    Dumping should work now.  */
60
61 /* #define CANNOT_DUMP */
62
63 /* Define VIRT_ADDR_VARIES if the virtual addresses of
64    pure and impure space as loaded can vary, and even their
65    relative order cannot be relied on.
66
67    Otherwise Emacs assumes that text space precedes data space,
68    numerically.  */
69
70 /* #define VIRT_ADDR_VARIES */
71
72 /* Define C_ALLOCA if this machine does not support a true alloca
73    and the one written in C should be used instead.
74    Define HAVE_ALLOCA to say that the system provides a properly
75    working alloca function and it should be used.
76    Define neither one if an assembler-language alloca
77    in the file alloca.s should be used.  */
78
79 #define C_ALLOCA
80 /*#define HAVE_ALLOCA */
81
82 /* Define NO_REMAP if memory segmentation makes it not work well
83    to change the boundary between the text section and data section
84    when Emacs is dumped.  If you define this, the preloaded Lisp
85    code will not be sharable; but that's better than failing completely.  */
86 /*#define NO_REMAP*/
87
88 /* This is a guess for an alternate solution to whatever
89    problem motivated defining _sobuf in sysdep,c with extern char *_sobuf.  */
90 #define _sobuf xsobuf
91
92 /* Address of start of text segment as loaded.  */
93
94 #define TEXT_START      0x800
95
96 /* Tell crt0.c not to define environ.  */
97
98 #define DONT_NEED_ENVIRON
99
100 /* The elxsi has no debugger, so might as well optimize instead
101    of trying to make a symbol table.  */
102
103 #define C_DEBUG_SWITCH "-O"
104
105 /* Elxsi uses COFF under both Sys V and BSD environments */
106
107 #define COFF
108
109 #define ADJUST_EXEC_HEADER {\
110 extern int _init_brk;\
111 _init_brk = bss_start;\
112 }