Artifact b4dff7226fbb6815fbf3893b9ce3e0192fb3c1f20fe61619ee1b37a4eafc0c57:
- File
psl-1983/20-tests/20-test-global-data.red
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1014) [annotate] [blame] [check-ins using] [more...]
% 20-TEST-GLOBAL-DATA - Data used by everyone, test version % % Author: Eric Benson, M Griss, S Lowder % Computer Science Dept. % University of Utah % Date: 1 September 1981 % Copyright (c) 1981 University of Utah on SysLisp; % For testing with MAINn, see P20T:XXX-HEADER.RED % Want a small SYMTAB and HEAP exported WConst MaxSymbols = 1000, MaxChannels = 31, MaxObArray = 1000, MaxRealRegs = 5, MaxArgs = 15; % BitPositions for testing, etc: exported Wconst BitsPerWord=36; % The STACK stuff external WVAR ST, StackLowerBound, StackUpperBound; % "standard" Symbol table Data structures, handled % specially in Compiler external Warray Symnam,SymVal,SymFnc,SymPrp; external WVar NextSymbol; % For extra arguments not in Real registers external WArray ArgumentBlock; % For the Foreign Function Calling Protocol external Wvar Arg1,Arg2,Arg3,Arg4,Arg5,Arg6,Arg7,Arg8,Arg9, Arg10,Arg11,Arg12,Arg13,Arg14,Arg15; off SysLisp; END;