-- File: SmallTestImpl1.mesa - Created by SETAR 14-Mar-86 16:42:43 -- Frank Bowers March 25, 1986 9:31:43 am PST DIRECTORY Rope, SmallTestOps; SmallTestImpl1: CEDAR PROGRAM IMPORTS Rope EXPORTS SmallTestOps = BEGIN OPEN SmallTestOps; MakepubWiresA: MakeWiresProc = { RETURN["Row1, Col1, Col2, Col3, Col4, Col5, nandInst15W, Row2, Row3, Row4, Row5, nandInst25W, nandInst35W, nandInst45W, nandInst55W"]; }; MakeprivWiresA: MakeWiresProc = { RETURN["nandInst51W, nandInst54W, nandInst53W, nandInst52W, nandInst42W, nandInst43W, nandInst44W, nandInst41W, nandInst31W, nandInst34W, nandInst33W, nandInst32W, nandInst22W, nandInst23W, nandInst24W, nandInst21W, nandInst11W, nandInst14W, nandInst13W, nandInst12W"]; }; MakepubWires1: PUBLIC PROC RETURNS [Rope.ROPE] = { RETURN[Rope.Cat[MakepubWiresA[]]]}; MakeprivWires1: PUBLIC PROC RETURNS [Rope.ROPE] = { RETURN[Rope.Cat[MakeprivWiresA[]]]}; END.