Mercurial > emacs
annotate src/m/orion.h @ 13740:7868bb1ee05f libc-951216 libc-951217 libc-951218 libc-951219 libc-951220 libc-951221 libc-951222 libc-951223 libc-951224 libc-951225 libc-951226 libc-951227 libc-951228 libc-951229 libc-951230 libc-951231 libc-960101 libc-960102 libc-960103 libc-960104 libc-960105 libc-960106 libc-960107 libc-960108 libc-960109 libc-960110 libc-960111 libc-960112 libc-960113 libc-960114 libc-960115
(AViiON): Add ix86-dg-dgux
author | Stan Cox <scox@redhat.com> |
---|---|
date | Sat, 16 Dec 1995 03:32:35 +0000 |
parents | 1d4654a97585 |
children | ee40177f6c68 |
rev | line source |
---|---|
456 | 1 /* machine description file for HLH Orion. |
2 Copyright (C) 1985 Free Software Foundation, Inc. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
3699 | 8 the Free Software Foundation; either version 2, or (at your option) |
456 | 9 any later version. |
10 | |
11 GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 /* The following line tells the configuration script what sort of | |
22 operating system this machine is likely to run. | |
23 USUAL-OPSYS="bsd4-2" */ | |
24 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
25 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
26 is the most significant byte. */ |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
27 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
28 #undef WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
29 |
456 | 30 /* Now define a symbol for the cpu type, if your compiler |
31 does not define it automatically. */ | |
32 | |
33 #ifndef orion | |
34 #define orion | |
35 #endif | |
36 | |
37 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | |
38 * group of arguments and treat it as an array of the arguments. */ | |
39 | |
40 #define NO_ARG_ARRAY | |
41 | |
42 /* Define WORD_MACHINE if addresses and such have | |
43 * to be corrected before they can be used as byte counts. */ | |
44 | |
45 #define WORD_MACHINE | |
46 | |
47 /* Use type int rather than a union, to represent Lisp_Object */ | |
48 /* This is desirable for most machines. */ | |
49 | |
50 #define NO_UNION_TYPE | |
51 | |
52 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend */ | |
53 | |
54 #define EXPLICIT_SIGN_EXTEND | |
55 | |
56 /* Data type of load average, as read out of kmem. */ | |
57 | |
58 #define LOAD_AVE_TYPE double | |
59 | |
60 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
61 | |
62 #ifndef FSCALE | |
63 #define FSCALE 1.0 | |
64 #endif | |
65 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
66 | |
67 /* It is necessary to use the portable imitation of alloca, | |
68 since a true stack-allocating one is impossible. */ | |
69 | |
70 #define C_ALLOCA |