68c78ec23c224fc57f790cc9e0b3ad99fa7cbf8b
[sxemacs] / src / m / ews4800r.h
1 /* m- file for NEC EWS4800 RISC series.
2    Copyright (C) 1987, 1992 Free Software Foundation, Inc.
3
4 This file is part of SXEmacs
5
6 SXEmacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 SXEmacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
18
19
20 /* Synched up with: Mule 2.0.  Not in FSF. */
21
22 /* Now define a symbol for the cpu type, if your compiler
23    does not define it automatically:
24    Ones defined so far include vax, m68000, ns16000, pyramid,
25    orion, tahoe, APOLLO and many others */
26 #ifndef mips
27 #       define mips
28 #endif
29
30 /* Data type of load average, as read out of kmem.  */
31
32 #define LOAD_AVE_TYPE long
33
34 /* Convert that into an integer that is 100 for a load average of 1.0  */
35
36 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / 256.0)
37
38 /* Define CANNOT_DUMP on machines where unexec does not work.
39    Then the function dump-emacs will not be defined
40    and temacs will do (load "loadup") automatically unless told otherwise.  */
41
42 #undef CANNOT_DUMP
43
44 /* Define C_ALLOCA if this machine does not support a true alloca
45    and the one written in C should be used instead.
46    Define HAVE_ALLOCA to say that the system provides a properly
47    working alloca function and it should be used.
48    Define neither one if an assembler-language alloca
49    in the file alloca.s should be used.  */
50
51 #ifdef __GNUC__
52 #ifndef HAVE_ALLOCA
53 #define HAVE_ALLOCA
54 #endif
55 #else
56 #define C_ALLOCA
57 #endif
58
59 /* Define NO_REMAP if memory segmentation makes it not work well
60    to change the boundary between the text section and data section
61    when Emacs is dumped.  If you define this, the preloaded Lisp
62    code will not be sharable; but that's better than failing completely.  */
63
64 #define NO_REMAP
65
66 /* Describe layout of the address space in an executing process.  */
67
68 #define TEXT_START 0x400000
69 /*#define DATA_START 0x800000*/
70
71 /* Alter some of the options used when linking.  */
72
73 #define LIBS_TERMCAP "-lcurses"