Copyright Ó 1986, 1987, 1991 by Xerox Corporation. All rights reserved.
Russ Atkinson (RRA) December 4, 1987 3:35:18 pm PST
JKF July 27, 1988 8:17:08 am PDT
DIRECTORY
IntCodeTarget USING [BitOrder],
Rope USING [ROPE],
Target: TYPE MachineParms USING [BitOrder, bitOrder, bitsPerAU, bitsPerByte, bitsPerWord];
IntCodeTargetImpl: CEDARPROGRAM
EXPORTS IntCodeTarget
= BEGIN
ROPE: TYPE = Rope.ROPE;
This file has definitions that allow us to be parameterized according to the target. Most of the variables are not constants to allow us to share more code without recompilation.
Machine description
name: PUBLICROPE ¬ "Sun-3/4";
Gives a human-readable name for the target machine. Useful for messages.