XilinxIO.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, February 14, 1990 5:21:06 pm PST
DIRECTORY Core, Sisyph;
XilinxIO: CEDAR DEFINITIONS = BEGIN
Placement
Axis: TYPE = {ax,ay};
Loc: PROC [cx: Sisyph.Context, x, y: INT] RETURNS [trash: NAT ← 0];
Set: PROC [cx: Sisyph.Context, x, y: INT, axis: Axis ← ax] RETURNS [trash: NAT ← 0];
Seq: PROC [cx: Sisyph.Context, axis: Axis, startIndex, orthogonalIndex: NAT, delta: INT ← 1] RETURNS [trash: NAT ← 0];
IO
SaveCellType: PROC [cellType: Core.CellType, fileName: Core.ROPENIL] RETURNS [multiplyDriven: LIST OF Core.ROPENIL];
fileName=NIL => fileName ← Rope.Cat[CoreOps.GetCellTypeName[cellType], ".xnf"]
END.