xref: /csrg-svn/old/adb/adb.vax/message.c (revision 3759)
1*3759Sroot #
2*3759Sroot /*
3*3759Sroot  *
4*3759Sroot  *	UNIX debugger
5*3759Sroot  *
6*3759Sroot  */
7*3759Sroot 
8*3759Sroot #include	"mac.h"
9*3759Sroot static	char sccsid[] = "@(#)message.c 4.1 05/14/81";
10*3759Sroot #include	"mode.h"
11*3759Sroot 
12*3759Sroot MSG		VERSION =  "\nVERSION VM/VAX4.1	DATE 05/14/81\n";
13*3759Sroot 
14*3759Sroot MSG		BADMOD	=  "bad modifier";
15*3759Sroot MSG		BADCOM	=  "bad command";
16*3759Sroot MSG		BADSYM	=  "symbol not found";
17*3759Sroot MSG		BADLOC	=  "automatic variable not found";
18*3759Sroot MSG		NOCFN	=  "c routine not found";
19*3759Sroot MSG		NOMATCH	=  "cannot locate value";
20*3759Sroot MSG		NOBKPT	=  "no breakpoint set";
21*3759Sroot MSG		BADKET	=  "unexpected ')'";
22*3759Sroot MSG		NOADR	=  "address expected";
23*3759Sroot MSG		NOPCS	=  "no process";
24*3759Sroot MSG		BADVAR	=  "bad variable";
25*3759Sroot MSG		BADTXT	=  "text address not found";
26*3759Sroot MSG		BADDAT	=  "data address not found";
27*3759Sroot MSG		ODDADR	=  "odd address";
28*3759Sroot MSG		EXBKPT	=  "too many breakpoints";
29*3759Sroot MSG		A68BAD	=  "bad a68 frame";
30*3759Sroot MSG		A68LNK	=  "bad a68 link";
31*3759Sroot MSG		ADWRAP	=  "address wrap around";
32*3759Sroot MSG		BADEQ	=  "unexpected `='";
33*3759Sroot MSG		BADWAIT	=  "wait error: process disappeared!";
34*3759Sroot MSG		ENDPCS	=  "process terminated";
35*3759Sroot MSG		NOFORK	=  "try again";
36*3759Sroot MSG		BADSYN	=  "syntax error";
37*3759Sroot MSG		NOEOR	=  "newline expected";
38*3759Sroot MSG		SZBKPT	=  "bkpt: command too long";
39*3759Sroot MSG		BADFIL	=  "bad file format";
40*3759Sroot MSG		BADNAM	=  "not enough space for symbols";
41*3759Sroot MSG		LONGFIL	=  "filename too long";
42*3759Sroot MSG		NOTOPEN	=  "cannot open";
43*3759Sroot MSG		BADMAG	=  "bad core magic number";
44*3759Sroot MSG		TOODEEP =  "$<< nesting too deep";
45