1: # 2: /* 3: * 4: * UNIX debugger 5: * 6: */ 7: 8: 9: 10: #include "mac.h" 11: #include "mode.h" 12: 13: MSG version = "\nVERSION menlo01 DATE 1980 Jun 6 11:43:04\n"; 14: 15: MSG BADMOD = "bad modifier"; 16: MSG BADCOM = "bad command"; 17: MSG BADSYM = "symbol not found"; 18: MSG BADLOC = "automatic variable not found"; 19: MSG NOCFN = "c routine not found"; 20: MSG NOMATCH = "cannot locate value"; 21: MSG NOBKPT = "no breakpoint set"; 22: MSG BADKET = "unexpected ')'"; 23: MSG NOADR = "address expected"; 24: MSG NOPCS = "no process"; 25: MSG BADVAR = "bad variable"; 26: MSG BADTXT = "text address not found"; 27: MSG BADDAT = "data address not found"; 28: MSG ODDADR = "odd address"; 29: MSG EXBKPT = "too many breakpoints"; 30: MSG A68BAD = "bad a68 frame"; 31: MSG A68LNK = "bad a68 link"; 32: MSG ADWRAP = "address wrap around"; 33: MSG BADEQ = "unexpected `='"; 34: MSG BADWAIT = "wait error: process disappeared!"; 35: MSG ENDPCS = "process terminated"; 36: MSG NOFORK = "try again"; 37: MSG BADSYN = "syntax error"; 38: MSG NOEOR = "newline expected"; 39: MSG SZBKPT = "bkpt: command too long"; 40: MSG BADFIL = "bad file format"; 41: MSG BADNAM = "not enough space for symbols"; 42: MSG LONGFIL = "filename too long"; 43: MSG NOTOPEN = "cannot open"; 44: MSG DIFMAG = "different core magic number";