Mercurial > emacs
annotate src/m/sun2.h @ 79813:5f3ae36f1159
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Thu, 10 Jan 2008 11:26:42 +0000 |
parents | f27b84de02cf |
children |
rev | line source |
---|---|
456 | 1 /* machine description file for Sun 68000's OPERATING SYSTEM version 2. |
2 Note that "sun2.h" refers to the operating system version, not the | |
3 CPU model number. See the MACHINES file for details. | |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
4 Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004, |
79755 | 5 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
456 | 6 |
7 This file is part of GNU Emacs. | |
8 | |
9 GNU Emacs is free software; you can redistribute it and/or modify | |
10 it under the terms of the GNU General Public License as published by | |
78258
6aba169c4b1f
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75227
diff
changeset
|
11 the Free Software Foundation; either version 3, or (at your option) |
456 | 12 any later version. |
13 | |
14 GNU Emacs is distributed in the hope that it will be useful, | |
15 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 GNU General Public License for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
20 along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 Boston, MA 02110-1301, USA. */ | |
456 | 23 |
24 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
14186
diff
changeset
|
25 /* The following line tells the configuration script what sort of |
456 | 26 operating system this machine is likely to run. |
27 USUAL-OPSYS="note" | |
28 | |
29 NOTE-START | |
30 Sun 1, 2 and 3 (-machine=sun1, -machine=sun2, -machine=sun3; | |
31 -opsystem=bsd4-2 or -opsystem=sunos4) | |
32 | |
33 Whether you should use sun1, sun2 or sun3 depends on the | |
34 VERSION OF THE OPERATING SYSTEM | |
35 you have. There are three machine types for different versions of | |
36 SunOS. All are derived from Berkeley 4.2, meaning that you should | |
37 use -opsystem=bsd4-2. Emacs 17 has run on all of them. You will | |
38 need to use sun3 on Sun 2's running SunOS release 3. | |
39 | |
40 For SunOS release 4 on a Sun 3, use -machine=sun3 and | |
41 -opsystem=sunos4. See the file share-lib/SUNBUG for how to solve | |
42 problems caused by bugs in the "export" version of SunOS 4. | |
43 NOTE-END */ | |
44 | |
78499 | 45 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
46 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
|
47 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
48 #define WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
49 |
456 | 50 /* Say this machine is a 68000 */ |
51 | |
52 #ifndef m68000 | |
53 #define m68000 | |
54 #endif | |
55 | |
56 /* Use type int rather than a union, to represent Lisp_Object */ | |
57 | |
58 #define NO_UNION_TYPE | |
59 | |
60 /* Sun can't write competent compilers */ | |
61 #define COMPILER_REGISTER_BUG | |
62 | |
63 /* XINT must explicitly sign-extend */ | |
64 | |
65 #define EXPLICIT_SIGN_EXTEND | |
66 | |
67 /* Data type of load average, as read out of kmem. */ | |
68 | |
69 #define LOAD_AVE_TYPE long | |
70 | |
71 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
72 | |
73 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
74 | |
75 /* Say that this is a Sun 2; must check for and maybe reinitialize | |
76 the "sky" board. */ | |
77 | |
78 #define sun2 | |
79 | |
80 /* Must use the system's termcap. It does special things. */ | |
81 | |
82 #define LIBS_TERMCAP -ltermcap | |
83 | |
84 /* Mask for address bits within a memory segment */ | |
85 | |
86 #define SEGMENT_MASK (SEGSIZ - 1) | |
87 | |
88 /* Arrange to link with sun windows, if requested. */ | |
89 /* For details on emacstool and sunfns, see etc/SUN-SUPPORT */ | |
90 /* These programs require Sun UNIX 4.2 Release 3.2 or greater */ | |
91 | |
92 #ifdef HAVE_SUN_WINDOWS | |
5255
b7d235bb78a7
(OTHER_FILES): Use ${libsrc} as dir.
Richard M. Stallman <rms@gnu.org>
parents:
3699
diff
changeset
|
93 #define OTHER_FILES ${libsrc}emacstool |
456 | 94 #define LIBS_MACHINE -lsuntool -lsunwindow -lpixrect |
95 #define OBJECTS_MACHINE sunfns.o | |
96 #define SYMS_MACHINE syms_of_sunfns () | |
97 #define PURESIZE 132000 | |
98 #endif | |
52401 | 99 |
100 /* arch-tag: 543c3570-74ca-4099-aa47-db7c7b691c8e | |
101 (do not change this comment) */ |