Artifact 9b56b57b4b00741ae8b45cbe7f421a0617d21999f5d880f44eff1e5449007023:
- File
psl-1983/3-1/clsc-20/windows-ex-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: 1757) [annotate] [blame] [check-ins using] [more...]
- File
psl-1983/3-1/windows/windows-ex-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: 1757) [annotate] [blame] [check-ins using]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % WINDOWS-20.SL - Dec-20 Windows Stuff (intended only for Dec-20 version) % % Author: Alan Snyder % Hewlett-Packard/CRC % Date: 4 April 1983 % % 15-Jun-83 - Robert Kessler % Added faslin of the 3 new device drivers: VT100, Ambassador and Teleray % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (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 "ambassador" "hp2648a" "physical-screen" "shared-physical-screen" "teleray" "virtual-screen" "vt100" "vt52x" ))