Artifact 636466d8a5d0f8188f1b69667c3c945eda806d853db15c148b9fa7ec060386f4:
- File
psl-1983/20-kernel/system-faslout.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: 1418) [annotate] [blame] [check-ins using] [more...]
% % 20-FASLOUT.RED - 20-specific stuff for FASL % % Author: Eric Benson % Symbolic Computation Group % Computer Science Dept. % University of Utah % Date: 20 February 1982 % Copyright (c) 1982 University of Utah % CompileTime DefConst(AddressingUnitsPerItem, 1, BitTableEntriesPerWord, 18, FASL_MAGIC_NUMBER, 99, RELOC_ID_NUMBER, 1, RELOC_VALUE_CELL, 2, RELOC_FUNCTION_CELL, 3, RELOC_WORD, 1, RELOC_HALFWORD, 2, RELOC_INF, 3); on SysLisp; CompileTime << smacro procedure RelocRightHalfTag X; Field(X, 18, 2); smacro procedure RelocRightHalfInf X; Field(X, 20, 16); smacro procedure RelocInfTag X; Field(X, 18, 2); smacro procedure RelocInfInf X; Field(X, 20, 16); smacro procedure RelocWordTag X; Field(X, 0, 2); smacro procedure RelocWordInf X; Field(X, 2, 34); smacro procedure PutRightHalf(Where, What); PutField(Where, 18, 18, What); put('RightHalf, 'Assign!-Op, 'PutRightHalf); >>; CompileTime DefList('((BinaryWrite ((bout))) (BinaryRead ((bin) (move (reg 1) (reg 2)))) (BinaryClose ((closf) (jfcl))) (BinaryWriteBlock ((hrli (reg 2) 8#444400) % point 36, (movns (reg 3)) (sout))) (BinaryReadBlock ((hrli (reg 2) 8#444400) % point 36, (movns (reg 3)) (sin)))), 'OpenCode); off Syslisp; END;