annotate src/m/news-risc.h @ 17577:6cb2ad625486

(dun-special-object): Floppy disk will melt in inventory or room, regardless of whether or not Stallman statuette is around. (dun-examine): You can examine objects in the jar without taking them out. (dun-take): You can take objects from the jar while you are on the bus. (dun-dig): Message from digging on the bus is the same as when you dig and don't find anything. (dun-climb): No longer errors out of the game when argument to "climb" is invalid. (dun-put): You can now put things in the jar, even if you are on the bus. (dun-special-move): "In" or "Out" command tells you if you are already on or off the bus. (dun-sauna-heat): Changed "begin to sweat" to "are perspiring" so that it makes sense whether you are heating up or cooling down. (dun-help): Changed author e-mail address, added web page. Added hint for batch mode. (*global*): Fixed spelling of Presely in global object list. (*global*): Added coconuts, tank, and lake as objects that are recognized. (*global*): Added `slip' as another way of describing the paper, and `chip' as another way of describing the CPU. (*global*): Upcase abbreviations of directions in room descriptions. (dun-login): Fixed erroneous login message to better-describe ftp limitations. (dun-rlogin): Added error message if user tries to rlogin back to pokey. (dun-load-d): Fixed so that if restore file isn't found which in non-batch mode, window will switch back to game.
author Richard M. Stallman <rms@gnu.org>
date Sun, 27 Apr 1997 17:15:58 +0000
parents b6301bd38638
children 47152260ac4c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
457
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* news-risc.h is for the "RISC News". */
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3 #include "mips.h"
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4
6045
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
5 #ifdef NEWSOS5
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
6
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
7 /* NEWS-OS 5.0.2 */
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
8
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
9 #define LIBS_MACHINE -lmld
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
10
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
11 #ifdef __GNUC__
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
12 #define C_DEBUG_SWITCH -g
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
13 #define C_OPTIMIZE_SWITCH -g -O
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
14 #define LD_SWITCH_MACHINE -g -Xlinker -D -Xlinker 800000
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
15 #else
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
16 #define C_DEBUG_SWITCH -g3
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
17 #define C_OPTIMIZE_SWITCH -g3
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
18 #define LD_SWITCH_MACHINE -g3 -D 800000 -non_shared
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
19 #endif
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
20
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
21 #else /* not NEWSOS5 */
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
22
457
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 /* The following line tells the configuration script what sort of
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
24 operating system this machine is likely to run.
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 USUAL-OPSYS="bsd4-3" */
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
27 #define COFF
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 #undef LD_SWITCH_MACHINE
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 #define LD_SWITCH_MACHINE -x -D 800000
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31 /* #define C_OPTIMIZE_SWITCH -O2 */
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 #define C_OPTIMIZE_SWITCH -O
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33
8066
b6301bd38638 (C_DEBUG_SWITCH) [not NEWSOS5]:
Richard M. Stallman <rms@gnu.org>
parents: 6045
diff changeset
34 #ifndef __GNUC__
457
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 #define C_DEBUG_SWITCH -g3
8066
b6301bd38638 (C_DEBUG_SWITCH) [not NEWSOS5]:
Richard M. Stallman <rms@gnu.org>
parents: 6045
diff changeset
36 #endif
457
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37
e442bb589751 entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 #undef TERMINFO
3520
dcc5e8a8417c (NO_MODE_T): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 457
diff changeset
39
dcc5e8a8417c (NO_MODE_T): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 457
diff changeset
40 /* We have no mode_t. */
dcc5e8a8417c (NO_MODE_T): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 457
diff changeset
41 #define NO_MODE_T
dcc5e8a8417c (NO_MODE_T): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 457
diff changeset
42
3819
Jim Blandy <jimb@redhat.com>
parents: 3520
diff changeset
43 /* Don't use the definitions in m/mips.h. */
3520
dcc5e8a8417c (NO_MODE_T): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 457
diff changeset
44 #undef LINKER
3819
Jim Blandy <jimb@redhat.com>
parents: 3520
diff changeset
45 #undef LIBS_MACHINE
6045
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
46 #define LIBS_MACHINE -lmld
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
47
8066
b6301bd38638 (C_DEBUG_SWITCH) [not NEWSOS5]:
Richard M. Stallman <rms@gnu.org>
parents: 6045
diff changeset
48 #undef KERNEL_FILE
b6301bd38638 (C_DEBUG_SWITCH) [not NEWSOS5]:
Richard M. Stallman <rms@gnu.org>
parents: 6045
diff changeset
49 #define KERNEL_FILE "/vmunix"
b6301bd38638 (C_DEBUG_SWITCH) [not NEWSOS5]:
Richard M. Stallman <rms@gnu.org>
parents: 6045
diff changeset
50
6045
c199a7ed9be2 [NEWSOS5] (C_DEBUG_SWITCH, C_OPTIMIZE_SWITCH)
Richard M. Stallman <rms@gnu.org>
parents: 3819
diff changeset
51 #endif /* not NEWSOS5 */