schEditPinOrder
schEditPinOrder(
d_cvId
l_pinList
g_updateInstLastChanged
)
=> t / nil
Description
Updates the pin ordering for schematic or symbol cellviews given a list of pin names contained in the cellview and their desired order.
The purpose of this function is to keep the pin ordering of a schematic or symbol synchronized with the port ordering of a Verilog® HDL or VHDL model.
Arguments
|
Boolean flag specifying whether to update the time stamp for the instances last changed. |
|
Value Returned
|
Updated the pin ordering for schematic or symbol cellviews given a list of pin names contained in the cellview and their desired order. |
|
Examples
Sets the pin order for the cellview ID to q, qbar, d, clk, and preset.
pinList = list( "q" "qbar" "d" "clk" "preset" )
schEditPinOrder( cvId pinList nil )
Return to top