vhdlToPinList
vhdlToPinList(t_libName t_cellName t_viewName) =>list/ nil
Description
Translates a VHDL cellview into an intermediate pin list format.
Arguments
Value Returned
Observe the following for the returned pin list:
|
A DPL list describing the cellview ports, cellview properties, and port properties in the following format: |
|
|
(nil name "pinName" accessDir "pinAccessDir" [prop <propList>] ) |
Examples
The following example shows the output of the vhdlToPinList function.
pinList =
list(nil
'ports list(
list(nil 'name "clock" 'direction "input")
list(nil 'name "a0" 'direction "output"
'prop list(nil 'delay 55.0))
)
'prop list(nil 'partName "count" 'myProp 5)
)
Related Topics
Return to top