Pass4Parms.mesa
Copyright Ó 1986, 1987, 1991 by Xerox Corporation. All rights reserved.
Russ Atkinson (RRA) July 7, 1988 10:41:06 am PDT
Pass4Parms: DEFINITIONS = BEGIN
globalOverheadBits: NAT = 128;
first available offset for variables in the global frame
localOverheadBits: NAT = 128;
first available offset for variables in the local frame
links: LinksOptions = [TRUE, TRUE, FALSE, TRUE];
(options chosen for Dragon)
LinksOptions: TYPE = RECORD [
indirect: BOOL, -- TRUE => use interface record
embedded: BOOL, -- TRUE => links are in frame or code, else preceed
alwaysCode: BOOL, -- TRUE => links must be in code segment
alwaysFrame: BOOL-- TRUE => links must be in global frame
];
END.