16 lines
534 B
Python
16 lines
534 B
Python
|
|
# -*- Mode:Python -*-
|
|
|
|
# Nimbus parameters.
|
|
parametersTable = \
|
|
( ('nimbus.aspectRatio' , TypePercentage, 100 , { 'min':10, 'max':1000 } )
|
|
, ("nimbus.pinsPlacement", TypeBool , False )
|
|
, ("nimbus.spaceMargin" , TypePercentage, 40 )
|
|
, ("nimbus.cellGauge" , TypeString , "sxlib", { 'flags':Cfg.Parameter.Flags.AllRequirements} )
|
|
, ("nimbus.routingGauge" , TypeString , "sxlib", { 'flags':Cfg.Parameter.Flags.AllRequirements} )
|
|
)
|
|
|
|
|
|
# layoutTable is defined inside Mauka.
|
|
layoutTable = ()
|