CDBusCells.mesa (part of ChipNDale)
Copyright © 1983, 1985 by Xerox Corporation. All rights reserved.
by Christian Jacobi, August 3, 1983 12:16 pm
last edited by Christian Jacobi, May 14, 1985 10:49:15 am PDT
DIRECTORY
CD USING [DesignPosition, DesignNumber, ObPtr, Layer, Design];
CDBusCells: CEDAR DEFINITIONS =
BEGIN
--To have a structure compoatible with Chipmonk's busses in ChipNDale
CreateBusCell:
PROC [design:
CD.Design, sizeOfFirst:
CD.DesignPosition, lev:
CD.Layer, count:
NAT, offset:
CD.DesignPosition, lengIncrement:
CD.DesignNumber𡤀]
RETURNS [
CD.ObPtr];
-- sizeOfFirst.x = width, sizeOfFirst.y = length of first wire
END.