Artifact 0fc1b9024d68544644fc4997b53b30278d503ee6a6aaf3264dae3e263e080507:
- File
psl-1983/3-1/windows/windows-20.sl
— 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: 1611) [annotate] [blame] [check-ins using] [more...]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % WINDOWS-20.SL - Dec-20 Windows Stuff (intended only for Dec-20 version) % % Author: Alan Snyder % Hewlett-Packard/CRC % Date: 4 April 1983 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (compiletime (load fast-strings fast-int)) (bothtimes (load strings common)) (fluid '(window-file-list window-source-prefix window-binary-prefix)) (if (or (unboundp 'window-source-prefix) (null window-source-prefix)) (setf window-source-prefix "pw:")) (if (or (unboundp 'window-binary-prefix) (null window-binary-prefix)) (setf window-binary-prefix "pwb:")) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Stuff for Building WINDOWS: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (de window-fixup-name (s) s) (de window-load-all () (for (in s window-file-list) (do (window-load s)) )) (de window-load (s) (window-faslin window-binary-prefix s) ) (de window-faslin (directory-name module-name) (setf module-name (window-fixup-name module-name)) (setf module-name (string-concat module-name ".b")) (let ((object-name (string-concat directory-name module-name))) (if (filep object-name) (faslin object-name) (continuableerror 99 (bldmsg "Unable to FASLIN %w" object-name) (list 'faslin object-name) )))) (setf window-file-list (list "hp2648a" "physical-screen" "shared-physical-screen" "virtual-screen" "vt52x" ))