Update years in copyright notice; nfc.
[bpt/emacs.git] / src / m / vax.h
CommitLineData
20c428fd 1/* machine description file for vax.
b908093d 2 Copyright (C) 1985, 1986, 2002, 2003, 2004,
aaef169d 3 2005, 2006 Free Software Foundation, Inc.
20c428fd
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
17385adc 9the Free Software Foundation; either version 2, or (at your option)
20c428fd
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
364c38d3
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
20c428fd
JB
21
22
177c0ea7 23/* The following line tells the configuration script what sort of
20c428fd
JB
24 operating system this machine is likely to run.
25 USUAL-OPSYS="note"
26
27NOTE-START
28The vax (-machine=vax) runs zillions of different operating systems.
29
30Vax running Berkeley Unix (-opsystem=bsd4-1, -opsystem=bsd4-2 or
31 -opsystem=bsd4-3)
32
33 Works.
34
35Vax running Ultrix (-opsystem=bsd4-2)
36
37 Works. See under Ultrix in share-lib/MACHINES for problems using X
38 windows on Ultrix.
39
40Vax running System V rel 2 (-opsystem=usg5-2)
41
42 18.27 Works.
43
44Vax running System V rel 0 (-opsystem=usg5-0)
45
46 Works as of 18.36.
47
48Vax running VMS (-opsystem=vms)
49
50 18.36 believed to work. Addition of features is necessary to make
51 this Emacs version more usable.
52
53NOTE-END */
54
74d3f806
KH
55/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word
56 is the most significant byte. */
57
58#undef WORDS_BIG_ENDIAN
59
20c428fd
JB
60/* #define vax -- appears to be done automatically */
61
62/* Use type int rather than a union, to represent Lisp_Object */
63
64#define NO_UNION_TYPE
65
66/* crt0.c should use the vax-bsd style of entry, with no dummy args. */
67
68#define CRT0_DUMMIES
69
70/* crt0.c should define a symbol `start' and do .globl with a dot. */
71
72#define DOT_GLOBAL_START
73
6df54671 74#ifdef BSD_SYSTEM
20c428fd
JB
75/* USG systems I know of running on Vaxes do not actually
76 support the load average, so disable it for them. */
77
78/* Data type of load average, as read out of kmem. */
79
80#define LOAD_AVE_TYPE double
81
82/* Convert that into an integer that is 100 for a load average of 1.0 */
83
84#define LOAD_AVE_CVT(x) ((int) ((x) * 100.0))
85
6df54671 86#endif /* BSD_SYSTEM */
20c428fd
JB
87
88#ifdef VMS
89
90/* Data type of load average, as read out of driver. */
91
92#define LOAD_AVE_TYPE float
93
94/* Convert that into an integer that is 100 for a load average of 1.0 */
95
96#define LOAD_AVE_CVT(x) ((int) ((x) * 100.0))
97
98#endif /* VMS */
99
100/* Vax sysV has alloca in the PW library. */
101
102#ifdef USG
103#define LIB_STANDARD -lPW -lc
20c428fd
JB
104
105/* There is some bug in unexec in for usg 5.2 on a vax
106 which nobody who runs such a system has yet tracked down. */
107#ifndef USG5_0
108#define NO_REMAP
109#endif /* USG 5_0 */
110
111#define TEXT_START 0
112#endif /* USG */
113
cefeb3a9
RS
114#ifdef BSD4_2
115#define HAVE_FTIME
116#endif
ab5796a9
MB
117
118/* arch-tag: 508bdf7a-01a0-4ce0-8eba-0704d0df55a0
119 (do not change this comment) */