Artifact 43072dbce903c9a0363bdf1558509bb0deafd609f150cfda775c71869ca2a3eb:
- File
psl-1983/nmode/hp9836-dev.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: 1671) [annotate] [blame] [check-ins using] [more...]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % HP9836-DEV.SL - HP9836 NMODE Development Support (not normally loaded) % % Author: Alan Snyder % Hewlett-Packard/CRC % Date: 20 January 1983 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (compiletime (load fast-strings fast-int extended-char)) (bothtimes (load strings common)) (fluid '(nmode-source-prefix window-source-prefix)) (setf nmode-source-prefix "n:") (setf window-source-prefix "w:") (setf prinlevel 3) (setf prinlength 10) (de nmode-compile (s) (setf s (nmode-fixup-name s)) (let ((object-name (string-concat nmode-source-prefix s)) (source-name (string-concat nmode-source-prefix (string-concat s ".sl"))) ) (compile-lisp-file source-name object-name) )) (de window-compile (s) (setf s (nmode-fixup-name s)) (let ((object-name (string-concat window-source-prefix s)) (source-name (string-concat window-source-prefix (string-concat s ".sl"))) ) (compile-lisp-file source-name object-name) )) (de pu-compile (s) (let ((object-name (string-concat "pl:" s)) (source-name (string-concat "pu:" (string-concat s ".sl"))) ) (compile-lisp-file source-name object-name) )) (de phpu-compile (s) (let ((object-name (string-concat "pl:" s)) (source-name (string-concat "phpu:" (string-concat s ".sl"))) ) (compile-lisp-file source-name object-name) )) (de nmode-compile-all () (for (in s nmode-file-list) (do (nmode-compile s)) )) (de window-compile-all () (for (in s window-file-list) (do (window-compile s)) ))