-- File: FSMPadsImpl3.mesa - Created by SETAR 24-Jun-86 14:50:20

DIRECTORY
SC,
SCTestUtil,
FSMPadsOps;

FSMPadsImpl3: CEDAR PROGRAM

IMPORTS SCTestUtil EXPORTS FSMPadsOps =
BEGIN OPEN FSMPadsOps;

MakeinternWiresA: MakeWiresProc = {
RETURN[LIST["w36", "w35", "w33", "w32", "w29", "w27", "w26", "w25", "w24", "w21", "w20", "w19", "w18", "w17", "Vdd", "Gnd", "unconnected"]];
};

MakeinternWires3: PUBLIC PROC RETURNS [ropeList: SC.RopeList ← NIL] = {
ropeList ← SCTestUtil.AppendRopeList[ropeList, MakeinternWiresA[]];
};

END.